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

List Pengumuman

{% for post in posts %}

Pengumuman {{ post.id }}

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

{{ post.content }}

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