view templates/svmain/group_admin.html @ 185:3d1a07772d4d

Rework title/icon template infrastructure
author Sylvain Beucler <beuc@beuc.net>
date Sun, 25 Jul 2010 09:59:57 +0200
parents b2d023049d85
children 508ab7cdef8d
line wrap: on
line source

{% extends "base.html" %}
{% load i18n %}
{% load svtopmenu %}

{% block title %}
{{group.svgroupinfo.full_name_display}} - {{title}}
{% endblock %}

{% block icon %}preferences{% endblock %}

{% block topmenu %}
  {% svtopmenu "group" %}
{% endblock %}

{% block content %}

<ul>
<li><a href="members/">Manage members</a></li>
</ul>

{% endblock %}

{% comment %}
Local Variables: **
mode: django-html **
tab-width: 4 **
indent-tabs-mode: nil **
End: **
{% endcomment %}