Commit 1dde0b7b74fbcda3ef997c71c047fbbb3f14bf54

Authored by Gustavo
1 parent 82cdec6e

Update template fix'd

Showing 1 changed file with 24 additions and 0 deletions   Show diff stats
news/templates/news/update.html 0 → 100644
... ... @@ -0,0 +1,24 @@
  1 +{% extends 'news/list.html' %}
  2 +
  3 +{% load widget_tweaks static i18n django_bootstrap_breadcrumbs permission_tags pagination %}
  4 +
  5 +{% block breadcrumbs %}
  6 + {{ block.super }}
  7 + {% trans 'Update News' as update_news %}
  8 + {% breadcrumb update_news 'news:update' %}
  9 +{% endblock %}
  10 +
  11 +{% block render_breadcrumbs %}
  12 + {% render_breadcrumbs %}
  13 +{% endblock %}
  14 +
  15 +{% block content %}
  16 +<div class="card card-content">
  17 + <div class="card-body">
  18 + {% include 'news/_form.html' %}
  19 + </div>
  20 +</div>
  21 +<br clear="all">
  22 +<br clear="all">
  23 +
  24 +{% endblock %}
... ...