57 lines
1.4 KiB
HTML
57 lines
1.4 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Edit Pengumuman{% endblock %}
|
|
|
|
{% block body %}
|
|
<form method="post">
|
|
{% for post in posts %}
|
|
<h3>Pengumuman {{ post.id }}</h3>
|
|
|
|
<label for="category">Kategori: </label>
|
|
<select name="category">
|
|
{% for cat in categories %}
|
|
<option value="{{ cat.id }}" {% if post.category == cat.id %}selected{% endif %}>{{ cat.category }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
|
|
<br>
|
|
|
|
<label for="konten">Konten: </label>
|
|
<textarea name="konten" rows="3" cols="30">{{ post.content }}</textarea>
|
|
|
|
<br>
|
|
|
|
<label for="created_at">Dibuat pada: </label>
|
|
<input type="text" name="created_at" value="{{ post.created_at }}" readonly>
|
|
|
|
<br>
|
|
|
|
<label for="creator">Dibuat oleh: </label>
|
|
<input type="text" name="creator" value="{{ post.creator }}" readonly>
|
|
|
|
<br>
|
|
|
|
<label for="edited_at">Diubah pada: </label>
|
|
<input type="text" name="edited_at" value="{{ post.edited_at }}" readonly>
|
|
|
|
<br>
|
|
|
|
<label for="editor">Diubah oleh: </label>
|
|
<input type="text" name="editor" value="{{ post.editor }}" readonly>
|
|
|
|
<!-- Current Timestamp -->
|
|
<input type="hidden" name="_currts" value="{{ timestamp }}" disabled>
|
|
{% endfor %}
|
|
|
|
<!-- Method -->
|
|
<input type="hidden" name="_method" value="put">
|
|
|
|
<!-- Token -->
|
|
<input type="hidden" name="_token" value={{ token }}>
|
|
|
|
<br>
|
|
|
|
<button type="submit" name="edit">Edit</button>
|
|
</form>
|
|
{% endblock %}
|