{% extends "base.html" %} {% block title %}Pengumuman{% endblock %} {% block body %}

List Pengumuman

{% for post in posts %} {% if post.id %}

Pengumuman {{ post.id }}

{{ post.content | raw }}
{% if status %} {% if post.status == 1 %} Edit {% elseif post.status == 2 %} Edit (Belum aktif) {% else %} Edit (Nonaktif) {% endif %} {% endif %} {% endif %} {% endfor %}
{% if privilage != "" %} + Tambah Pengumuman {% if privilage == 1 %} + Tambah Kategori {% endif %} Keluar {% endif %} {% endblock %}