{% extends "base.html" %} {% block title %}Pengumuman{% endblock %} {% block nav %} {% endblock %} {% block body %}
{% if privilege == "" %}
{% if not posts %}

Tidak ada pengumuman

{% else %} {% for post in posts %}
{{ post.content | raw }}
{% endfor %} {% endif %}
{% else %}
{% for post in posts %}
[{{ post.valid_at }} - {{ post.expired_at }}] {{ post.content }}
{% endfor %}
{% endif %}
{% endblock %}