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/domain_edit.html

47 lines
1.3 KiB
HTML

{% extends "domain_base.html" %}
{% block domain_content %}
5 years ago
<div class="section">
<div class="section__body">
<form method="post">
{{ form.form_text({
label:'ID',
name:'id',
value:domain._id,
disabled:true,
required:true
}) }}
5 years ago
{{ form.form_text({
label:'Name',
name:'name',
value:domain.name,
5 years ago
autofocus:true,
required:true
}) }}
{{ form.form_text({
label:'Gravatar Email',
help_text:'Will be used as the system icon.',
name:'gravatar',
value:domain.gravatar
5 years ago
}) }}
{{ form.form_textarea({
columns:12,
label:'Bulletin',
name:'bulletin',
value:domain.bulletin,
5 years ago
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 %}