{% extends "studygroups/base.html" %} {% load studygroup_tags %} {% block content %}
{% trans 'STUDY GROUP' %} {{ study_group.title }}
{{ study_group.mission|safe }}
{{ study_group.content|safe }}
{% for officer in officers %} {% endfor %}
{% trans 'Position' %} {% trans 'Name' %} {% trans 'Phone' %}
{{ officer.position }} {% if officer.user.get_full_name %} {{ officer.user.get_full_name }} {% else %} {{ officer.user }} {% endif %} {{ officer.phone }}
{% if admin %}
{{ study_group.notes|safe }}
{% endif %}
{% trans 'Files' %} {% if admin %}{% trans 'Add a File' %}{% endif %}
{% include "studygroups/meta.html" %}
{% endblock %}