8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d89ba7 commit 40f1129Copy full SHA for 40f1129
templates/backend/posts.html
@@ -26,7 +26,7 @@
26
{% if posts %}
27
{% for post in posts %}
28
<tr>
29
- <th scope="row">1</th>
+ <th scope="row">{{ forloop.counter }}</th>
30
<td> <a href="/blog/posts/{{post.id}}"> {{ post.title}} </a></td>
31
<td><a href="/blog/author/{{post.author}}">{{ post.author}}</a></td>
32
<td>{{post.updated_date.year}}/{{post.updated_date.month}}/{{post.updated_date.day}}</td>
0 commit comments