diff --git a/template/article_template.html b/template/article_template.html index 7f0e3cf..6af2ce8 100644 --- a/template/article_template.html +++ b/template/article_template.html @@ -22,6 +22,9 @@

{{ article.title }} + {% if article.draft %} + DRAFT DRAFT D + {% endif %}

{{ article.summary }} @@ -52,7 +55,7 @@

\ No newline at end of file diff --git a/template/index_template.html b/template/index_template.html index aa512b2..732d740 100644 --- a/template/index_template.html +++ b/template/index_template.html @@ -17,7 +17,13 @@
-

{{ article.title }}

+

+ {{ article.title }} + + {% if article.draft %} + DRAFT + {% endif %} +

{{ article.summary }}

@@ -30,7 +36,7 @@
\ No newline at end of file