| {% extends base_layout %} |
| {% comment %} |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| {% endcomment %} |
| |
| {% block stylesheets %} |
| {{ block.super }} |
| <link rel="stylesheet" type="text/css" media="screen" href="/{{ css_path }}/readonly.css" /> |
| {% endblock stylesheets %} |
| |
| {% block page_content %} |
| |
| {% if not record %} |
| <div id="user-message" class="error"> |
| <strong>ALERT: </strong>No such organization application record exists. |
| {% if create_link %} |
| <a href="{{ create_link }}">To submit a new organization application click here.</a> |
| {% else %} |
| {{ submission_msg }} |
| {% endif %} |
| </div> |
| {% else %} |
| <div id="organization-name" class="block full home-block-1"> |
| <h2 id="title-profile-show">ORGANIZATION APPLICATION RESPONSE.</h2> |
| |
| {% if update_link %} |
| <div id="edit-page" class="org-page-link"> |
| <a href="{{ update_link }}">Update</a> |
| </div> |
| {% endif %} |
| </div> |
| <!-- begin profile block --> |
| {{ record.render }} |
| |
| {% if main_admin_url %} |
| <div id="{{ css_prefix }}" class="block block-form"> |
| <div id="block-{{ css_prefix }}-content" class="model-readonly"> |
| <div id="org-app-show-group" class="block block-org-app-group"> |
| <h4 id="title-section-org-app-show-group"><a href="{{ main_admin_url }}">Main Admin Info</a></h4> |
| </div> |
| </div> |
| </div> |
| <div id="{{ css_prefix }}" class="block block-form"> |
| <div id="block-{{ css_prefix }}-content" class="model-readonly"> |
| <div id="org-app-show-group" class="block block-org-app-group"> |
| <h4 id="title-section-org-app-show-group"><a href="{{ backup_admin_url }}">Backup Admin Info</a></h4> |
| </div> |
| </div> |
| </div> |
| {% endif %} |
| |
| <!-- end profile block --> |
| |
| {% endif %} |
| {% endblock page_content %} |