Fix a few issues with internationalization

This commit is contained in:
Bat
2018-06-17 20:54:59 +01:00
parent 0ea8c882ad
commit 7faf93f44a
4 changed files with 14 additions and 4 deletions
+1 -1
View File
@@ -9,7 +9,7 @@
<div class="list">
{% for notification in notifications %}
<div class="card">
<h3><a href="{% if notification.link %}{{ notification.link }}/{% else %}#{% endif %}">{{ notification.title }}</h3>
<h3><a href="{% if notification.link %}{{ notification.link }}/{% else %}#{% endif %}">{{ notification.title | _ }}</h3>
{% if notification.content %}
<p>{{ notification.content }}</p>
{% endif %}