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

List Pengumuman

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

Pengumuman {{ post.id }}

{% if status %} {% if post.status == 1 %} Edit {% elseif post.status == 0 %} Edit (Nonaktif) {% endif %} {% endif %}

{{ post.content|raw }}

{% endif %} {% endfor %} {% if status %} + Tambah Pengumuman + Tambah Kategori Logout {% endif %} {% endblock %}