mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-31 17:53:56 +02:00
Slightly better column layout
This commit is contained in:
parent
fc448351da
commit
5c04faa8ca
5 changed files with 20 additions and 11 deletions
|
@ -4,7 +4,7 @@ import logging
|
|||
|
||||
from django import forms
|
||||
|
||||
from formtools.wizard.views import NamedUrlSessionWizardView
|
||||
from formtools.wizard.views import NamedUrlSessionWizardView # type: ignore
|
||||
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
|
13
src/registrar/templates/application_form.html
Normal file
13
src/registrar/templates/application_form.html
Normal file
|
@ -0,0 +1,13 @@
|
|||
{% extends 'base.html' %}
|
||||
|
||||
{% block content %}
|
||||
<div class="grid-row">
|
||||
<div class="grid-col-3">
|
||||
{% include 'application_sidebar.html' %}
|
||||
</div>
|
||||
|
||||
<div class="grid-col-9">
|
||||
{% block form_content %}{% endblock %}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
|
@ -1,11 +1,9 @@
|
|||
<!-- Test page -->
|
||||
{% extends 'base.html' %}
|
||||
{% extends 'application_form.html' %}
|
||||
|
||||
{% block title %}Apply for a .gov domain - Requirements{% endblock %}
|
||||
{% block content %}
|
||||
|
||||
{% include 'application_sidebar.html' %}
|
||||
{% block title %}Apply for a .gov domain - About your organization{% endblock %}
|
||||
|
||||
{% block form_content %}
|
||||
<h1>About your organization</h1>
|
||||
|
||||
<h2> What kind of government organization do you represent?</h2>
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
<!-- Test page -->
|
||||
{% extends 'base.html' %}
|
||||
{% extends 'application_form.html' %}
|
||||
|
||||
{% block title %}Apply for a .gov domain - Requirements{% endblock %}
|
||||
{% block content %}
|
||||
|
||||
{% include 'application_sidebar.html' %}
|
||||
|
||||
{% block form_content %}
|
||||
<h1>Requirements</h1>
|
||||
|
||||
<p>In order to request and register a .gov domain: </p>
|
||||
|
|
|
@ -158,7 +158,7 @@
|
|||
|
||||
{% block section_nav %}{% endblock %}
|
||||
|
||||
<main id="main-content">
|
||||
<main id="main-content" class="grid-container">
|
||||
{% block hero %}{% endblock %}
|
||||
{% block content %}{% endblock %}
|
||||
</main>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue