diff options
| author | Bobby <[email protected]> | 2022-09-20 02:33:38 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-09-20 02:33:38 -0400 |
| commit | 460e2c9f14ec7470ee87bca8368f7e4f34b17027 (patch) | |
| tree | 0ad8bc6feefa5a74a5d53b878f5df17c4d6a4898 | |
| parent | 1a59d9fdd9f49b95c758df48863144a24e555c83 (diff) | |
| download | thatcomputerscientist-460e2c9f14ec7470ee87bca8368f7e4f34b17027.tar.xz thatcomputerscientist-460e2c9f14ec7470ee87bca8368f7e4f34b17027.zip | |
Removed description from posts
| -rw-r--r-- | templates/blog_admin/posts.html | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/templates/blog_admin/posts.html b/templates/blog_admin/posts.html index 6c4575cd..a996986c 100644 --- a/templates/blog_admin/posts.html +++ b/templates/blog_admin/posts.html @@ -1,5 +1,4 @@ {% extends 'blog/partials/base.html' %} {% block content %} -{% load remove_tags %} <div class="main"> <section> {% include 'blog_admin/partials/posts_topbar.html' %} @@ -7,7 +6,6 @@ <thead> <tr> <th>Title</th> - <th>Description</th> <th>Author</th> <th>Created</th> <th>Category</th> @@ -19,7 +17,6 @@ {% for post in posts %} <tr> <td><a href="{% url 'blog:post' post.slug %}">{{ post.title }}</a></td> - <td>{{ post.body|truncatechars:50|remove_tags }}</td> <td>{{ post.author }}</td> <td>{{ post.date }}</td> <td><a href="#">{{ post.category }}</a></td> |
