Skip to content

Commit

Permalink
make html title more readable in query template (#180)
Browse files Browse the repository at this point in the history
tiny tweak to make this easier to visually parse—I think it matches your style in other templates
  • Loading branch information
ryanpitts authored and Simon Willison committed Apr 3, 2018
1 parent 0abd3ab commit 446d47f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datasette/templates/query.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends "base.html" %}

{% block title %}{{ database }}{% if query and query.sql %}{{ query.sql }}{% endif %}{% endblock %}
{% block title %}{{ database }}{% if query and query.sql %}: {{ query.sql }}{% endif %}{% endblock %}

{% block extra_head %}
{{ super() }}
Expand Down

0 comments on commit 446d47f

Please sign in to comment.