20 lines
448 B
HTML
20 lines
448 B
HTML
{% extends "admin/base.html" %}
|
|
|
|
{% block title %}Edit About{% endblock title %}
|
|
|
|
{% block content %}
|
|
<h1>Edit About</h1>
|
|
|
|
<form method="post" action="/admin/about">
|
|
<label>
|
|
Title
|
|
<input type="text" name="title" value="{{ page.title }}" required>
|
|
</label>
|
|
<label>
|
|
Content
|
|
<textarea name="content" rows="16" required>{{ page.content }}</textarea>
|
|
</label>
|
|
<button type="submit">Save</button>
|
|
</form>
|
|
{% endblock content %}
|