From 5513f9c55d6e1495e73512bfdd2f6a8f4e9b714d Mon Sep 17 00:00:00 2001 From: Artur Galyamov Date: Wed, 28 Dec 2022 01:44:32 +0500 Subject: [PATCH] =?UTF-8?q?=D0=92=D1=8B=D0=B2=D0=B5=D0=BB=20=D0=BA=D0=BD?= =?UTF-8?q?=D0=BE=D0=BF=D0=BA=D1=83=20=D0=92=D0=9A,=20=D0=BF=D0=BE=D0=BA?= =?UTF-8?q?=D0=B0=20=D1=81=20=D1=85=D0=B0=D1=80=D0=B4=D0=BA=D0=BE=D0=B4?= =?UTF-8?q?=D0=BE=D0=BC=20=D1=81=D1=81=D1=8B=D0=BB=D0=BA=D0=B8=20#28?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cms/templates/articles/new.html | 10 +++++++++- cms/templates/base.html | 3 +++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/cms/templates/articles/new.html b/cms/templates/articles/new.html index 8cb6193..6e71919 100644 --- a/cms/templates/articles/new.html +++ b/cms/templates/articles/new.html @@ -25,4 +25,12 @@ -{% endblock content %} \ No newline at end of file +{% endblock content %} +{% block extra_scripts %} + +{% endblock %} \ No newline at end of file diff --git a/cms/templates/base.html b/cms/templates/base.html index ce7363c..14781ed 100644 --- a/cms/templates/base.html +++ b/cms/templates/base.html @@ -7,9 +7,12 @@ {% bootstrap_css %} {% bootstrap_javascript %} {% bootstrap_messages %} + {% block content %} {% endblock content %} + {% block extra_scripts %} + {% endblock %} \ No newline at end of file