horizon/openstack_dashboard/dashboards/admin/group_types/templates/group_types/_update_group_type.html

21 lines
632 B
HTML

{% extends "horizon/common/_modal_form.html" %}
{% load i18n %}
{% block form_id %}{% endblock %}
{% block form_action %}{% url 'horizon:admin:group_types:update_type' group_type.id %}{% endblock %}
{% block modal_id %}update_group_type_modal{% endblock %}
{% block modal-header %}{% trans "Edit Group Type" %}{% endblock %}
{% block modal-body %}
<div class="left">
<fieldset>
{% include "horizon/common/_form_fields.html" %}
</fieldset>
</div>
<div class="right">
<h3>{% trans "Description:" %}</h3>
<p>{% trans "Modify group type name, description, and public status." %}</p>
</div>
{% endblock %}