From baf14633cbd8af6413290ccae5765aefd2a278a5 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Mon, 20 Jun 2016 16:37:07 -0400 Subject: remove old django folder --- .../templates/journal/microentry_arhive_month.html | 31 ---------------------- 1 file changed, 31 deletions(-) delete mode 100644 bn_django/journal/templates/journal/microentry_arhive_month.html (limited to 'bn_django/journal/templates/journal/microentry_arhive_month.html') diff --git a/bn_django/journal/templates/journal/microentry_arhive_month.html b/bn_django/journal/templates/journal/microentry_arhive_month.html deleted file mode 100644 index eca642d..0000000 --- a/bn_django/journal/templates/journal/microentry_arhive_month.html +++ /dev/null @@ -1,31 +0,0 @@ -{% extends "journal/base.html" %} -{% load comments %} - -{% block path %}{{block.super}} - » microentries - -{% block title %}Journal Microentries{% endblock %} - -{% block content %} -
-{% if object_list %} - {% for item in object_list %} - {{item.date|date:"D, d/m/Y @H:i"}}: - - {% if item.title %}{{item.title}}{%else%}[Untitled]{%endif%} -

- {{ item.html_content|truncatewords_html:256 }} - {% get_comment_count for item as comment_count %} - ({{ comment_count }} comments) -

- {% endfor %} -{% else %} -

No entries have been entered yet!

-{% endif %} - -{% if is_paginated %} {% if has_previous %} -« previous | -{% endif %} {% if has_next %} -next » -{% endif %} {% endif %} -{% endblock %} -- cgit v1.2.3