Commit 6b15a35184d5367942321d998c6a83aa0976ade6
1 parent
9fc956f4
Exists in
master
and in
5 other branches
Breadcrumb to manage user page #25 #52
Showing
1 changed file
with
9 additions
and
10 deletions
Show diff stats
users/templates/list_users.html
1 | -{% extends 'base.html' %} | |
1 | +{% extends 'home.html' %} | |
2 | 2 | |
3 | -{% load i18n pagination %} | |
3 | +{% load i18n pagination django_bootstrap_breadcrumbs %} | |
4 | 4 | |
5 | 5 | {% block breadcrumbs %} |
6 | - <div class="row"> | |
7 | - <div class="col-md-12"> | |
8 | - <ul class="breadcrumb" style="margin-bottom: 5px;"> | |
9 | - <li><a href="{% url 'app:index' %}">{% trans 'Home' %}</a></li> | |
10 | - <li class="active">{% trans 'Manage Users' %}</li> | |
11 | - </ul> | |
12 | - </div> | |
13 | - </div> | |
6 | + | |
7 | + {{ block.super }} | |
8 | + {% breadcrumb 'Manage Users' 'users:manage' %} | |
9 | + | |
14 | 10 | {% endblock %} |
15 | 11 | |
16 | 12 | {% block sidebar %} |
... | ... | @@ -68,3 +64,6 @@ |
68 | 64 | </div> |
69 | 65 | {% endif %} |
70 | 66 | {% endblock %} |
67 | + | |
68 | +{% block rightbar %} | |
69 | +{% endblock rightbar %} | ... | ... |