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

Pengumuman {{ post.id }}



{{ post.created_at }}
{{ creator.full_name }}


{% if post.edited_at is empty %} - {% 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.id == creator.id) %}
{% endif %} {% if editor_now.privilage == 1 %}
{% endif %} {% endblock %}