Mercurial > hg > ltpdarepo
changeset 97:cd4a15072c97
Tweak templates.
author | Daniele Nicolodi <daniele@grinta.net> |
---|---|
date | Sun, 21 Aug 2011 18:17:27 +0200 |
parents | e7e0258660aa |
children | 84672a6ac38b |
files | src/ltpdarepo/templates/database.html src/ltpdarepo/templates/databases/edit.html src/ltpdarepo/templates/databases/permissions.html src/ltpdarepo/templates/objs.html src/ltpdarepo/templates/queries/drop.html src/ltpdarepo/templates/queries/edit.html src/ltpdarepo/templates/queries/view.html src/ltpdarepo/templates/users/drop.html src/ltpdarepo/templates/users/edit.html src/ltpdarepo/templates/users/password.html src/ltpdarepo/templates/users/reset.html |
diffstat | 11 files changed, 13 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ltpdarepo/templates/database.html Sun Aug 21 18:17:27 2011 +0200 +++ b/src/ltpdarepo/templates/database.html Sun Aug 21 18:17:27 2011 +0200 @@ -2,7 +2,7 @@ {% block title %}{{ database.id }}{% endblock %} {% block body %} <h2>Database «{{ database.id }}»</h2> -<p class="discrete">{{ database.description|default('—'|safe, true) }}</p> +<p class="discrete">{{ database.description }}</p> <ul class="actions"> <li><a href="{{ url_for('browse.browse', database=database.id) }}">Browse</a></li> <li><a href="{{ url_for('browse.activity', database=database.id) }}">Show activity</a></li>
--- a/src/ltpdarepo/templates/databases/edit.html Sun Aug 21 18:17:27 2011 +0200 +++ b/src/ltpdarepo/templates/databases/edit.html Sun Aug 21 18:17:27 2011 +0200 @@ -1,5 +1,6 @@ {% import 'forms.html' as forms %} {% extends "layout.html" %} +{% block title %}{{ database.id }}{% endblock %} {% block body %} <h2>Database «{{ database.id }}»</h2> {{ forms.render(form) }}
--- a/src/ltpdarepo/templates/databases/permissions.html Sun Aug 21 18:17:27 2011 +0200 +++ b/src/ltpdarepo/templates/databases/permissions.html Sun Aug 21 18:17:27 2011 +0200 @@ -1,4 +1,5 @@ {% extends "layout.html" %} +{% block title %}{{ database.id }}{% endblock %} {% block body %} <h2>Permissions for database «{{ database }}»</h2> <form action="" method="post">
--- a/src/ltpdarepo/templates/objs.html Sun Aug 21 18:17:27 2011 +0200 +++ b/src/ltpdarepo/templates/objs.html Sun Aug 21 18:17:27 2011 +0200 @@ -3,7 +3,7 @@ {% block title %}{{ database.id }}{% endblock %} {% block body %} <h2>{% block pagetitle %}Database «{{ database.id }}»{% endblock %}</h2> -<p class="discrete">{{ database.description|default(' '|safe, true) }}</p> +<p class="discrete">{{ database.description }}</p> <p class="discrete">{{ batch.count }} objects</p> {% block above %}{% endblock %}
--- a/src/ltpdarepo/templates/queries/drop.html Sun Aug 21 18:17:27 2011 +0200 +++ b/src/ltpdarepo/templates/queries/drop.html Sun Aug 21 18:17:27 2011 +0200 @@ -1,6 +1,6 @@ {% import 'forms.html' as forms %} {% extends "layout.html" %} -{% block title %}Drop query{% endblock %} +{% block title %}Query {{ query.title }}{% endblock %} {% block body %} <h2>Drop query «{{ query.title }}»</h2> <p class="discrete">Are you sure you want to drop this named query?</p>
--- a/src/ltpdarepo/templates/queries/edit.html Sun Aug 21 18:17:27 2011 +0200 +++ b/src/ltpdarepo/templates/queries/edit.html Sun Aug 21 18:17:27 2011 +0200 @@ -1,6 +1,6 @@ {% import 'forms.html' as forms %} {% extends "layout.html" %} -{% block title %}Edit query{% endblock %} +{% block title %}Query {{ query.title }}{% endblock %} {% block body %} <h2>Edit named query</h2> {{ forms.render(form) }}
--- a/src/ltpdarepo/templates/queries/view.html Sun Aug 21 18:17:27 2011 +0200 +++ b/src/ltpdarepo/templates/queries/view.html Sun Aug 21 18:17:27 2011 +0200 @@ -1,5 +1,5 @@ {% extends "layout.html" %} -{% block title %}{{ query.title }}{% endblock %} +{% block title %}Query {{ query.title }}{% endblock %} {% block body %} <h2>Query «{{ query.title }}»</h2> <p class="field"><span class="label">Database:</span> <tt>{{ query.db }}</tt></p>
--- a/src/ltpdarepo/templates/users/drop.html Sun Aug 21 18:17:27 2011 +0200 +++ b/src/ltpdarepo/templates/users/drop.html Sun Aug 21 18:17:27 2011 +0200 @@ -1,5 +1,6 @@ {% import 'forms.html' as forms %} {% extends "layout.html" %} +{% block title %}User {{ user.username }}{% endblock %} {% block body %} <h2>Drop user «{{ user.username }}»</h2> <p class="discrete">
--- a/src/ltpdarepo/templates/users/edit.html Sun Aug 21 18:17:27 2011 +0200 +++ b/src/ltpdarepo/templates/users/edit.html Sun Aug 21 18:17:27 2011 +0200 @@ -1,5 +1,6 @@ {% import 'forms.html' as forms %} {% extends "layout.html" %} +{% block title %}User {{ username }}{% endblock %} {% block body %} <h2>User «{{ username }}»</h2> {{ forms.render(form) }}
--- a/src/ltpdarepo/templates/users/password.html Sun Aug 21 18:17:27 2011 +0200 +++ b/src/ltpdarepo/templates/users/password.html Sun Aug 21 18:17:27 2011 +0200 @@ -1,7 +1,8 @@ {% import 'forms.html' as forms %} {% extends "layout.html" %} +{% block title %}User {{ session.username }}{% endblock %} {% block body %} -<h2>User «{{ session.username }}» password</h2> -<p class="discrete"></p> +<h2>New user «{{ session.username }}» password</h2> +<p class="discrete">Please choose a safe password</p> {{ forms.render(form) }} {% endblock %}
--- a/src/ltpdarepo/templates/users/reset.html Sun Aug 21 18:17:27 2011 +0200 +++ b/src/ltpdarepo/templates/users/reset.html Sun Aug 21 18:17:27 2011 +0200 @@ -1,6 +1,6 @@ {% import 'forms.html' as forms %} {% extends "layout.html" %} -{% block title %}User {{ user.username }}{% endblock%} +{% block title %}User {{ user.username }}{% endblock %} {% block body %} <h2>Reset password for user «{{ user.username }}»</h2> <p class="discrete">A password reset token will be sent to the user email address.</p>