Move all AO text into one file

This commit is contained in:
igorkorenfeld 2023-01-23 17:46:48 -05:00
parent 45dcc07be8
commit e0a571bb69
No known key found for this signature in database
GPG key ID: 826947A4B867F659
2 changed files with 50 additions and 23 deletions

View file

@ -13,29 +13,7 @@
</p>
<div class="ao_example">
{% if is_federal %}
{% if federal_type == 'executive' %}
{% include "includes/ao_example__exec.html" %}
{% elif federal_type == 'judicial' %}
{% include "includes/ao_example__judicial.html" %}
{% elif federal_type == 'legislative' %}
{% include "includes/ao_example__legislative.html" %}
{% endif %}
{% elif organization_type == 'city' %}
{% include "includes/ao_example__city.html" %}
{% elif organization_type == 'county' %}
{% include "includes/ao_example__county.html" %}
{% elif organization_type == 'interstate' %}
{% include "includes/ao_example__interstate.html" %}
{% elif organization_type == 'school_district' %}
{% include "includes/ao_example__school-district.html" %}
{% elif organization_type == 'special_district' %}
{% include "includes/ao_example__special-district.html" %}
{% elif organization_type == 'state_or_territory' %}
{% include "includes/ao_example__state-territory.html" %}
{% elif organization_type == 'tribal' %}
{% include "includes/ao_example__tribal.html" %}
{% endif %}
{% include "includes/ao_example.html" %}
</div>
<p>Well contact your authorizing official to let them know that you made this request and to double check that they approve it.</p>

View file

@ -0,0 +1,49 @@
{% if is_federal %}
{% if federal_type == 'executive' %}
<p>Domain requests from executive branch agencies must be authorized by <strong>Chief Information Officers</strong> or <strong>agency heads</strong>.</p>
<p>Domain requests from executive branch agencies are subject to guidance issued by the U.S. Office of Management and Budget. </p>
{% elif federal_type == 'judicial' %}
<p>Domain requests from the U.S. Supreme Court must be authorized by the <strong>director of information technology for the U.S. Supreme Court.</strong></p>
<p>Domain requests from other judicial branch agencies must be authorized by the <strong>director</strong> or <strong>Chief Information Officer of the Administrative Office (AO)</strong> of the United States Courts.
</p>
{% elif federal_type == 'legislative' %}
<h3> U.S. Senate </h3>
<p>Domain requests from the U.S. Senate must come from the <strong>Senate Sergeant at Arms.</strong></p>
<h3> U.S. House of Representatives </h3>
<p class="">Domain requests from the U.S. House of Representatives must come from the <strong>House Chief Administrative Officer.</strong>
<h3> Other legislative branch agencies </h3>
<p class="margin-top-1">Domain requests from legislative branch agencies must come from the <strong>agencys head</strong> or <strong>Chief Information Officer.</strong></p>
<p class="margin-top-1">Domain requests from legislative commissions must come from the <strong>head of the commission</strong>, or the <strong>head or Chief Information Officer of the parent agency,</strong> if there is one.
</p>
{% endif %}
{% elif organization_type == 'city' %}
<p>Domain requests from cities must be authorized by <strong>the mayor</strong> or the equivalent <strong>highest elected official.</strong></p>
{% elif organization_type == 'county' %}
<p>Domain requests from counties must be authorized by the <strong>chair of the county commission </strong>or <strong>the equivalent highest elected official.</strong></p>
{% elif organization_type == 'interstate' %}
<p>Domain requests from interstate organizations must be authorized by the <strong>highest-ranking executive</strong> (president, director, chair, or equivalent) or <strong>one of the states governors or Chief Information Officers.</strong></p>
{% elif organization_type == 'school_district' %}
<p>Domain requests from school district governments must be authorized by the <strong>highest-ranking executive (the chair of a school districts board or a superintendent)</strong>.</p>
{% elif organization_type == 'special_district' %}
<p>Domain requests from special districts must be authorized by the <strong>highest-ranking executive (president, director, chair, or equivalent)</strong> or <strong>state Chief Information Officers for state-based organizations</strong>.</p>
{% elif organization_type == 'state_or_territory' %}
<h3>States and territories: executive branch</h3>
<p>Domain requests from states and territories must be authorized by the <strong>governor</strong> or the <strong>state Chief Information Officer.</strong></p>
<h3>States and territories: judicial and legislative branches</h3>
<p>Domain requests from state legislatures and courts must be authorized by an agencys <strong>Chief Information Officer</strong> or <strong>highest-ranking executive</strong>.</p>
{% elif organization_type == 'tribal' %}
<p>Domain requests from federally-recognized tribal governments must be authorized by <strong>tribal chiefs</strong> as noted by the <a href="https://www.bia.gov/service/tribal-leaders-directory" class="usa-link"> Bureau of Indian Affairs.</a></p>
{% endif %}