removed breadcrumbs logic to its own template

removed breadcrumbs block from templates
added breadcrumbs that were missing from settings page
This commit is contained in:
ajurna@gmail.com
2016-03-30 11:37:49 +01:00
parent 35ad65aaa2
commit ae1b43d366
8 changed files with 19 additions and 52 deletions

View File

@@ -1,15 +1,6 @@
{% extends "base.html" %}
{% block title %}{{ title }}{% endblock %}
{% block breadcrumb %}
{% for crumb in breadcrumbs %}
{% if not forloop.last %}
<li><a href="{{ crumb.url }}">{{ crumb.name }}</a></li>
{% else %}
<li class="active">{{ crumb.name }}</li>
{% endif %}
{% endfor %}
{% endblock %}
{% block content %}
<div class="container">
<h2 class="center">Comics</h2>