Commit e7bd3b3261c33ff5bf3769303756e66ce8fc90b2

Authored by Gustavo
1 parent 0ee93abf

Some updates in manage news

Showing 1 changed file with 14 additions and 0 deletions   Show diff stats
news/templates/news/list.html
... ... @@ -0,0 +1,14 @@
  1 +{% extends 'base.html' %}
  2 +
  3 +{% load static i18n django_bootstrap_breadcrumbs permission_tags %}
  4 +
  5 +{% block breadcrumbs %}
  6 + {{ block.super }}
  7 + {% breadcrumb "Manage News" 'news:manage_news' %}
  8 +{% endblock %}
  9 +
  10 +{% block render_breadcrumbs %}
  11 + {% render_breadcrumbs %}
  12 +{% endblock %}
  13 +
  14 +{% block content %}{% endblock %}
... ...