aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-09-20 02:33:38 -0400
committerBobby <[email protected]>2022-09-20 02:33:38 -0400
commit460e2c9f14ec7470ee87bca8368f7e4f34b17027 (patch)
tree0ad8bc6feefa5a74a5d53b878f5df17c4d6a4898
parent1a59d9fdd9f49b95c758df48863144a24e555c83 (diff)
downloadthatcomputerscientist-460e2c9f14ec7470ee87bca8368f7e4f34b17027.tar.xz
thatcomputerscientist-460e2c9f14ec7470ee87bca8368f7e4f34b17027.zip
Removed description from posts
-rw-r--r--templates/blog_admin/posts.html3
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>