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

List Pengumuman

{% for post in posts %}

Pengumuman {{ post.id }}

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

{{ post.content }}

{% endfor %} + Tambah Pengumuman {% endblock %}