mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-21 16:51:08 +02:00
Remove base form content from other views
This commit is contained in:
parent
3d24ed04af
commit
302b6f139a
2 changed files with 15 additions and 9 deletions
|
@ -2,7 +2,11 @@
|
||||||
{% extends 'application_form.html' %}
|
{% extends 'application_form.html' %}
|
||||||
{% load widget_tweaks %}
|
{% load widget_tweaks %}
|
||||||
|
|
||||||
{% block title %}Apply for a .gov domain - Your organization's contact information{% endblock %}
|
{% block backnav %}
|
||||||
|
{% with form_name="step__org-contact" %}
|
||||||
|
{{ block.super }}
|
||||||
|
{% endwith %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block form_content %}
|
{% block form_content %}
|
||||||
<h1>Your organization's contact information</h1>
|
<h1>Your organization's contact information</h1>
|
||||||
|
@ -14,7 +18,7 @@ of a larger entity. If so, enter information about your part of the larger entit
|
||||||
|
|
||||||
<p>All fields are required unless they are marked optional.</p>
|
<p>All fields are required unless they are marked optional.</p>
|
||||||
|
|
||||||
<form class="usa-form usa-form--large" method="post">
|
<form id="step__org-contact" class="usa-form usa-form--large" method="post">
|
||||||
{{ wizard.management_form }}
|
{{ wizard.management_form }}
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
|
@ -26,10 +30,8 @@ of a larger entity. If so, enter information about your part of the larger entit
|
||||||
{{ wizard.form.street_address|add_class:"usa-input" }}
|
{{ wizard.form.street_address|add_class:"usa-input" }}
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
{% if wizard.steps.prev %}
|
{{ block.super }}
|
||||||
<button name="wizard_goto_step" type="submit" class="usa-button usa-button--base" value="{{ wizard.steps.prev }}">Previous</button>
|
|
||||||
{% endif %}
|
|
||||||
<button type="submit" class="usa-button">Submit</button>
|
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -3,12 +3,16 @@
|
||||||
{% load widget_tweaks %}
|
{% load widget_tweaks %}
|
||||||
{% load dynamic_question_tags %}
|
{% load dynamic_question_tags %}
|
||||||
|
|
||||||
{% block title %}Apply for a .gov domain - About your organization{% endblock %}
|
{% block backnav %}
|
||||||
|
{% with form_name="step__about-org" %}
|
||||||
|
{{ block.super }}
|
||||||
|
{% endwith %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block form_content %}
|
{% block form_content %}
|
||||||
<h1>About your organization</h1>
|
<h1>About your organization</h1>
|
||||||
|
|
||||||
<form class="usa-form usa-form--large" method="post">
|
<form id="step__about-org" class="usa-form usa-form--large" method="post">
|
||||||
{{ wizard.management_form }}
|
{{ wizard.management_form }}
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
|
@ -48,7 +52,7 @@
|
||||||
{{ wizard.form.is_election_board|add_class:"usa-radio" }}
|
{{ wizard.form.is_election_board|add_class:"usa-radio" }}
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<button type="submit" class="usa-button">Next</button>
|
{{ block.super }}
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue