From 1dde0b7b74fbcda3ef997c71c047fbbb3f14bf54 Mon Sep 17 00:00:00 2001 From: Gustavo Date: Mon, 10 Apr 2017 23:59:38 -0300 Subject: [PATCH] Update template fix'd --- news/templates/news/update.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+), 0 deletions(-) create mode 100644 news/templates/news/update.html diff --git a/news/templates/news/update.html b/news/templates/news/update.html new file mode 100644 index 0000000..a90b694 --- /dev/null +++ b/news/templates/news/update.html @@ -0,0 +1,24 @@ +{% extends 'news/list.html' %} + +{% load widget_tweaks static i18n django_bootstrap_breadcrumbs permission_tags pagination %} + +{% block breadcrumbs %} + {{ block.super }} + {% trans 'Update News' as update_news %} + {% breadcrumb update_news 'news:update' %} +{% endblock %} + +{% block render_breadcrumbs %} + {% render_breadcrumbs %} +{% endblock %} + +{% block content %} +
+
+ {% include 'news/_form.html' %} +
+
+
+
+ +{% endblock %} -- libgit2 0.21.2