* Use h1/h2 instead of h2/h3 in the templates, since there probably won't be a main...
authorMatthijs Kooijman <matthijs@stdio.flexvps.nl>
Sat, 9 Feb 2008 10:09:07 +0000 (11:09 +0100)
committerMatthijs Kooijman <matthijs@stdio.flexvps.nl>
Sat, 9 Feb 2008 10:09:07 +0000 (11:09 +0100)
templates/influences/add.html
templates/influences/add_character.html
templates/influences/character_detail.html
templates/influences/character_list.html
templates/influences/index.html
templates/influences/influence_detail.html

index 29327c0c82f85d5973c640a9c5f761c8d6ea5ec7..1a3bb01ba7ca75d9fb738fe5205116e48a02dadb 100644 (file)
@@ -3,7 +3,7 @@
 
 {% block content %}
 
-<h2>{% trans "Submit influence" %}</h2>
+<h1>{% trans "Submit influence" %}</h1>
 {% if form %}
 <p>
 {% blocktrans %}You can submit an influence here. Use this form if your character wants
index c81e088cd6e36c4dc9902ba7f0763b8484d9a705..9cb66713653594c349113e0382302e4a1849a916 100644 (file)
@@ -2,7 +2,7 @@
 {% load i18n %}
 
 {% block content %}
-<h2>{% trans "Add a character" %}</h2>
+<h1>{% trans "Add a character" %}</h1>
 {% if form %}
 <form method="POST">
 <table>
index bf6ac953f190d30fc5fd35eba39d03dd721dafc2..86ddd0ee727a1a45a20ed123e6323cb5c3e2c10c 100644 (file)
@@ -3,13 +3,13 @@
 
 {% block content %}
 
-<h2>{{ object.name }}</h2>
+<h1>{{ object.name }}</h1>
 {% ifequal character.status "N" %}
 <em>{% trans "This character was not yet approved by the SLs" %}</em>
 {% else %}
 <em>{% trans "This character is approved by the SLs" %}</em>
 {% endifequal %}
-<h3>{% blocktrans with object.name as name %}Influences for {{ name }}{% endblocktrans %}</h3>
+<h2>{% blocktrans with object.name as name %}Influences for {{ name }}{% endblocktrans %}</h2>
 <ul>
 {% for influence in object.influence_set.all %}
        <li><a href="{% url influences_influence_detail influence.pk %}">{{ influence }}</a></li>
index df39a8aeeadae2be124be67ad34143263929a3c5..40e58611faadeab0560dd5ed2e66e01a9029d0ef 100644 (file)
@@ -3,7 +3,7 @@
 
 {% block content %}
 
-<h2>{% trans "Your characters"%}</h2>
+<h1>{% trans "Your characters"%}</h1>
 {% if object_list %}
        <ul>
        {% for character in object_list %}
index bafc6a138bceadc408e3859e6e0f9a1093979c41..ccd2da9d670e14cd9a94b731db078011279b0028 100644 (file)
@@ -3,7 +3,7 @@
 
 {% block content %}
 
-<h2>{% trans "Your characters"%}</h2>
+<h1>{% trans "Your characters"%}</h1>
 {% if characters %}
        <ul>
        {% for character in characters %}
@@ -17,7 +17,7 @@
 <p><a href="{% url influences_add_character %}">{% trans "Add character" %}</a></p>
 
 {% if characters %}
-<h2>{% trans "Your influences" %}</h2>
+<h1>{% trans "Your influences" %}</h1>
 {% if influences %}
        <ul>
        {% for influence in influences %}
index e3aaf82b3a4b6f9f685770e08f8505d2639c63e6..17945793318f5acccf814ef54eae480be417e40f 100644 (file)
@@ -3,7 +3,7 @@
 
 {% block content %}
 
-<h2>{{ object.summary }}</h2>
+<h1>{{ object.summary }}</h1>
 <table>
 <tr><td>{% trans "Contact" %}:</td><td>{{ object.contact }}</td></tr>
 <tr><td>{% trans "Character" %}:</td><td><a href="{% url influences_character_detail object.character.id %}">{{ object.character }}</a></td></tr>