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

Pengumuman {{ post.id }}



{{ post.created_at }}
{% if post.creator == user.id %} {{ user.name }} {% endif %}
{{ 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 %} {% if post.editor == user.id %} {{ user.name }} {% endif %} {% endif %}
{% if post.status == 0 %} Nonaktif {% else %} Aktif {% endif %}
{% if post.status == 1 %}
{% endif %} {% endblock %}