# HG changeset patch # User Daniel Diniz # Date 1245782602 -7200 # Node ID 82ce842da66148fa2e0c302bf6eda881119ab734 # Parent 32cb30846cfd8b9ec6276821ac47c2b0ea5341cc Patch that touches 'upstream' templates, for use in surveys. Consists out of three changes. 1 - Move the placement in base.hmtl to after the closing of scripts_block, so templates that extend base.html can add scripts to the . 2 - Add tooltips for checkboxes inside fieldsets. 3 - Comment out an empty table row in templatetags/_as_table.html, which probably has an arcane reason to stay empty :) Reviewed by: Lennard de Rijk, Pawel Solyga Patch by: Daniel Diniz, James Levy diff -r 32cb30846cfd -r 82ce842da661 app/soc/templates/soc/base.html --- a/app/soc/templates/soc/base.html Mon Jun 22 07:32:45 2009 +0200 +++ b/app/soc/templates/soc/base.html Tue Jun 23 20:43:22 2009 +0200 @@ -99,8 +99,8 @@ {% if uses_duplicates %} {% endif %} - {% endblock %} + {% block body_tag %} @@ -109,7 +109,7 @@
{% block login_links %} {% if account %} - {{ account.email }} ({{ account.nickname }}) | + {{ account.email }} ({{ account.nickname }}) | {% endif %} {% if is_admin %} Developer | @@ -120,10 +120,10 @@ {% if is_local %}
-
| - Admin | + | + Admin | {% endif %} - Report bugs | + Report bugs | {% if account %} Sign out {% else %} @@ -196,7 +196,7 @@