You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/templates/manage_edit.html

42 lines
1.2 KiB
HTML

5 years ago
{% set page_name = "manage_edit" %}
5 years ago
{% import "components/form.html" as form with context %}
{% extends "manage_base.html" %}
5 years ago
{% block manage_content %}
5 years ago
<div class="section">
<div class="section__body">
<form method="post">
5 years ago
{{ form.form_text({
label:'Name',
name:'uname',
value:system.uname,
autofocus:true,
required:true
}) }}
{{ form.form_text({
label:'Gravatar Email',
help_text:'Will be used as the system icon.',
name:'gravatar',
value:system.gravatar
}) }}
{{ form.form_textarea({
columns:12,
label:'Bulletin',
name:'bio',
value:system.bio,
markdown:true,
required:false
}) }}
5 years ago
<div class="row"><div class="columns">
5 years ago
<input type="hidden" name="csrfToken" value="{{ handler.csrfToken }}">
5 years ago
<button type="submit" class="rounded primary button">
{{ _('Update') }}
</button>
<button type="button" class="rounded button" onclick="window.history.go(-1)">
{{ _('Cancel') }}
</button>
</div></div>
</form>
</div>
</div>
{% endblock %}