* Mark all strings used so far as translatable.
[matthijs/projects/xerxes.git] / templates / influences / character_detail.html
index 56c60cd50bcc18528abe6438c6b7dc233919cfe1..96e2c209f3903ce8300e5a2c29f944007726eb67 100644 (file)
@@ -1,9 +1,10 @@
-<h1>{{ object.name }}</h1>
-Influences voor {{ object.name }}
+{% load i18n %}
+<h2>{{ object.name }}</h2>
+<h3>{% blocktrans with object.name as name %}Influences for {{ name }}{% endblocktrans %}</h3>
 <ul>
 {% for influence in object.influence_set.objects.all %}
        <li>{{ influence }}</li>
 {% endfor %}
 </ul>
 
-<a href="/influences/character/{{ object.id }}/addinfluence">Influence toevoegen</a>
+<a href="/influences/character/{{ object.id }}/addinfluence">{% trans "Submit influence" %}</a>