mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-19 02:01:04 +00:00
a8aeb40b95
Signed-off-by: Trinity Pointard <trinity.pointard@insa-rennes.fr>
19 lines
560 B
Text
19 lines
560 B
Text
{% extends "base" %}
|
|
|
|
{% block title %}
|
|
Notifications
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
<h1>Notifications</h1>
|
|
<div class="list">
|
|
{% for notification in notifications %}
|
|
<div class="card">
|
|
<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 %}
|