* Only show the list of influences when there are any characters.
authorMatthijs Kooijman <matthijs@stdio.flexvps.nl>
Fri, 8 Feb 2008 22:27:21 +0000 (23:27 +0100)
committerMatthijs Kooijman <matthijs@stdio.flexvps.nl>
Fri, 8 Feb 2008 22:27:21 +0000 (23:27 +0100)
templates/influences/index.html

index 3a6b600a21fe89f8f198485e805704e65e78fe7f..bafc6a138bceadc408e3859e6e0f9a1093979c41 100644 (file)
@@ -16,6 +16,7 @@
 
 <p><a href="{% url influences_add_character %}">{% trans "Add character" %}</a></p>
 
+{% if characters %}
 <h2>{% trans "Your influences" %}</h2>
 {% if influences %}
        <ul>
@@ -28,4 +29,5 @@
 {% endif %}
 
 <p><a href="{% url influences_add_influence %}">{% trans "Submit influence" %}</a></p>
+{% endif %}
 {% endblock %}