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 --- .../journal/templates/journal/entry_list.html | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 bn_django/journal/templates/journal/entry_list.html (limited to 'bn_django/journal/templates/journal/entry_list.html') diff --git a/bn_django/journal/templates/journal/entry_list.html b/bn_django/journal/templates/journal/entry_list.html deleted file mode 100644 index 8902552..0000000 --- a/bn_django/journal/templates/journal/entry_list.html +++ /dev/null @@ -1,39 +0,0 @@ -{% extends "journal/base.html" %} -{% load comments %} - -{% block title %}Journal Entries{% endblock %} - -{% block otherhead %}{{ block.super}} - -{% endblock %} - -{% block content %} -
-
-This page has an RSS feed. -
-See also artifacts, -microentries. - -
-{% if object_list %} - {% for item in object_list %} - {% get_comment_count for item as comment_count %} -

- {% if item.title %}{{item.title}}{%else%}[Untitled]{%endif%}

- {{item.date|date:"D, d/m/Y @H:i"}} by {{ item.author.username }}. - {{ comment_count }} comments -

- {{ item.html_content|truncatewords_html:256 }} -

- {% 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