2018-05-13 15:35:55 +02:00
|
|
|
{% extends "base" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
Notifications
|
|
|
|
{% endblock title %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h1>Notifications</h1>
|
2018-05-13 22:33:21 +02:00
|
|
|
<div class="list">
|
2018-05-13 15:35:55 +02:00
|
|
|
{% for notification in notifications %}
|
2018-05-13 22:33:21 +02:00
|
|
|
<div class="card">
|
2018-05-13 15:35:55 +02:00
|
|
|
<h3><a href="{% if notification.link %}{{ notification.link }}{% else %}#{% endif %}">{{ notification.title }}</h3>
|
|
|
|
{% if notification.content %}
|
|
|
|
<p>{{ notification.content }}</p>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endblock content %}
|