{% 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 status %} + Tambah Pengumuman + Tambah Kategori Keluar {% endif %} {% endblock %}