{% extends "base.html" %} {% load i18n %} {% load svtopmenu %} {% load svmarkup %} {% block title %} {{group.svgroupinfo.get_full_name_display}} - {% trans "Summary" %} {% endblock %} {% block topmenu %} {% svtopmenu "group" %} {% endblock %} {% block content %}
{% trans "Membership info" %}
{% if group.svgroupinfo.get_admin_memberships %}
{% trans "Project admins:" %}
{% for membership in group.svgroupinfo.get_admin_memberships %} {% endfor %} {% else %}
{% trans "No members!" %}
{% endif %}
{% blocktrans count group.user_set.count as count %}{{count}} active member{% plural %}{{count}} active members{% endblocktrans %}
{% trans "Group identification" %}
{% trans "Id:" %} #{{group.pk}}
{% trans "System name:" %} {{group.name}}
{% trans "Name:" %} {{group.svgroupinfo.full_name}}
{% trans "Group type:" %} {{group.svgroupinfo.type.name}}
{% if group.svgroupinfo.status == 'P' %} {% trans "This projects is currently not approved and is waiting for moderation." %} {% endif %}

{{group.svgroupinfo.type.description}}

{% if group.svgroupinfo.long_description %} {{group.svgroupinfo.long_description|svmarkup_full}} {% else %}{% if group.svgroupinfo.short_description %}

{{group.svgroupinfo.short_description}}

{% else %} {% url savane:svmain:group_admin_info group.name as url_group_admin_info %} {% blocktrans with ''|safe as begin_link and '' as end_link %}This project has not yet submitted a short description. You can {{begin_link}}submit it{{end_link}} now.{% endblocktrans %} {% endif %}{% endif %}

{% trans "Registration date" %}: {{group.svgroupinfo.register_time}}
{% if group.svgroupinfo.type.can_use_license %} {% trans "License" %}: {{group.svgroupinfo.license.name}}
{% endif %} {% if group.svgroupinfo.type.can_use_devel_status %} {% trans "Development status" %}: {{group.svgroupinfo.devel_status}}
{% endif %}

{% if user.is_authenticated %}
{% csrf_token %}
{% endif %} {% endblock %} {% comment %} Local Variables: ** mode: django-html ** tab-width: 4 ** indent-tabs-mode: nil ** End: ** {% endcomment %}