You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
634 B
25 lines
634 B
{% extends request.is_ajax|yesno:'bajax.html,base.html' %}
|
|
{% load i18n %}
|
|
|
|
|
|
{% block breadcrumb %}
|
|
<ol class="breadcrumb">
|
|
<li><span class="glyphicon glyphicon-home"></span></li>
|
|
<li><a href="{% url 'group_app:group_list' %}">{% trans 'Groups' %}</a></li>
|
|
<li class="active">{% block active_text %}{% trans 'Groups' %}{% endblock %}</li>
|
|
</ol>
|
|
{% endblock %}
|
|
|
|
|
|
{% block page-header %}
|
|
{% trans 'Groups' %}
|
|
{% endblock %}
|
|
|
|
|
|
{% block main %}
|
|
<div class="panel panel-default">
|
|
<div class="panel-body">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|