{% extends "base_site.html" %} {% load staticfiles %} {% block title %}Groups - View{% endblock %} {% block extrahead %}{{ block.super }} {% endblock %} {% block breadcrumbs %}{{ block.super }} » Groups » {{ group.acronym }} {% endblock %} {% block content %}

Groups - View

{% comment %} Here we need to check that group.area_director and group.area_director.area are defined before referencing. Otherwise the template would raise errors if the group area director record didn't exist or in the case of Area Director = TBD, the area field is NULL {% endcomment %} {% if group.liaison_contacts %} {% endif %} {% if group.features.has_chartering_process %} {% else %} {% endif %}
Group Acronym:{{ group.acronym }}
Group Name:{{ group.name }}
Status:{{ group.state }}
Type:{{ group.type }}
Proposed Date:{{ group.proposed_date|date:"Y-m-d" }}
Start Date:{{ group.start_date|date:"Y-m-d" }}
Concluded Date:{{ group.concluded_date|date:"Y-m-d" }}
Primary Area: {% if not group.parent %}(No Data){% else %} {{ group.parent }} {% endif %}
Primary Area Director: {% if group.ad_role %} {{ group.ad_role.person }} {% endif %}
Meeting Scheduled:{{ group.meeting_scheduled}}
Email Address:{{ group.list_email }}
Email Subscription:{{ group.list_subscribe }}
Email Archive:{{ group.list_archive }}
Default Liaison Contacts:{{ group.liaison_contacts.contacts }}
Charter:View Charter
Description:{{ group.description }}
Comments:{{ group.comments }}
Last Modified Date:{{ group.time }}
{% endblock %}