Skip to content
Snippets Groups Projects

Resolve "Dashboard"

Merged Tom Teichler requested to merge 30-dashboard into master
All threads resolved!
1 file
+ 5
5
Compare changes
  • Side-by-side
  • Inline
@@ -6,7 +6,7 @@
<div class="row">
<div class="col s12 m6">
<h5>Letzte Aktivitäten</h5>
<h5>{% blocktrans %}Last activities{% endblocktrans %}</h5>
{% if activities %}
<ul class="collection">
@@ -24,12 +24,12 @@
{% endfor %}
</ul>
{% else %}
<p>Noch keine Aktivitäten vorhanden.</p>
<p>{% blocktrans %}No activities available yet.{% endblocktrans %}</p>
{% endif %}
</div>
<div class="col s12 m6">
<h5>Letzte Benachrichtigungen</h5>
<h5>{% blocktrans %}Recent notifications{% endblocktrans %}</h5>
{% if notifications %}
<ul class="collection">
@@ -45,14 +45,14 @@
</p>
{% if notification.link %}
<p>
<a href="{{ notification.link }}">Mehr Informationen →</a>
<a href="{{ notification.link }}">{% blocktrans %}More information →{% endblocktrans %}</a>
</p>
{% endif %}
</li>
{% endfor %}
</ul>
{% else %}
<p>Noch keine Benachrichtigungen vorhanden.</p>
<p>{% blocktrans %}No notifications available yet.{% endblocktrans %}</p>
{% endif %}
</div>
</div>
Loading