mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-12 20:49:41 +02:00
Remove column wrapper divs, add class to sections directly
This commit is contained in:
parent
45ff32b62f
commit
6f0af3d571
1 changed files with 68 additions and 75 deletions
|
@ -14,9 +14,7 @@
|
||||||
|
|
||||||
<p><a href="{% url 'application:' %}" class="usa-button">Start a new domain request</a></p>
|
<p><a href="{% url 'application:' %}" class="usa-button">Start a new domain request</a></p>
|
||||||
|
|
||||||
|
<section class="dashboard tablet:grid-col-11 desktop:grid-col-10">
|
||||||
<div class="tablet:grid-col-11 desktop:grid-col-10">
|
|
||||||
<section class="dashboard">
|
|
||||||
<h2>Registered domains</h2>
|
<h2>Registered domains</h2>
|
||||||
{% if domains %}
|
{% if domains %}
|
||||||
{% for domain in domains %}
|
{% for domain in domains %}
|
||||||
|
@ -26,10 +24,8 @@
|
||||||
<p>You don't have any registered domains yet</p>
|
<p>You don't have any registered domains yet</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</section>
|
</section>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="tablet:grid-col-11 desktop:grid-col-10">
|
<section class="dashboard tablet:grid-col-11 desktop:grid-col-10">
|
||||||
<section class="dashboard">
|
|
||||||
<h2>Active domain requests</h2>
|
<h2>Active domain requests</h2>
|
||||||
{% if domain_applications %}
|
{% if domain_applications %}
|
||||||
<table class="usa-table usa-table--borderless usa-table--stacked">
|
<table class="usa-table usa-table--borderless usa-table--stacked">
|
||||||
|
@ -75,10 +71,8 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<p><a href="{% url 'application:' %}" class="usa-button">Start a new domain request</a></p>
|
<p><a href="{% url 'application:' %}" class="usa-button">Start a new domain request</a></p>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="tablet:grid-col-11 desktop:grid-col-10">
|
<section class="dashboard tablet:grid-col-11 desktop:grid-col-10">
|
||||||
<section class="dashboard">
|
|
||||||
<h2>Archived domains</h2>
|
<h2>Archived domains</h2>
|
||||||
{% if archived_domains %}
|
{% if archived_domains %}
|
||||||
{% for domain in archived_domains %}
|
{% for domain in archived_domains %}
|
||||||
|
@ -88,15 +82,14 @@
|
||||||
<p>You don't have any archived domains</p>
|
<p>You don't have any archived domains</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</section>
|
</section>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="tablet:grid-col-11 desktop:grid-col-10">
|
<section class="tablet:grid-col-11 desktop:grid-col-10">
|
||||||
<h2 class="padding-top-1 mobile-lg:padding-top-3"> Export domains</h2>
|
<h2 class="padding-top-1 mobile-lg:padding-top-3"> Export domains</h2>
|
||||||
<p>If you would like to analyze your list of domains further, you can download the list of domains and their statuses as csv file</p>
|
<p>If you would like to analyze your list of domains further, you can download the list of domains and their statuses as csv file</p>
|
||||||
<a href="{% url 'todo' %}" class="usa-button usa-button--outline">
|
<a href="{% url 'todo' %}" class="usa-button usa-button--outline">
|
||||||
Export domains as csv
|
Export domains as csv
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</section>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue