{% extends "base.html" %} {% block title %}Edit Pengumuman{% endblock %} {% block body %}
{% for post in posts %}

Pengumuman {{ post.id }}



{{ post.created_at }}
{{ post.creator }}
{{ post.expired_at }}
{% if post.edited_at == "0000-00-00 00:00:00" %} Tidak pernah {% else %} {{ post.edited_at }} {% endif %}
{% if post.editor == "0" %} - {% else %} {{ post.editor }} {% endif %} {% endfor %}
{% endfor %}
{% endblock %}