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

Pengumuman {{ post.id }}



{{ post.created_at }}
{{ creator.full_name }}
{{ post.valid_at }}
{{ post.expired_at }}
{% if post.edited_at is empty %} Tidak pernah {% else %} {{ post.edited_at }} {% endif %}
{% if post.editor is empty %} - {% else %} {{ editor.full_name }} {% endif %}
{% if post.status == 1 %} Aktif {% elseif post.status == 2 %} Belum aktif {% else %} Nonaktif {% endif %}
{% if (post.status == 1 and editor_now == creator.id) %}
{% endif %} {% endblock %}