Skip to content

Commit

Permalink
Merge pull request #45 from stuartmaxwell/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartmaxwell authored May 16, 2024
2 parents bf38dbd + 3989dec commit 2d74019
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
asgiref==3.8.1
# via django
crispy-bootstrap5==2024.2
django==5.0.4
django==5.0.6
# via
# crispy-bootstrap5
# django-crispy-forms
Expand All @@ -26,12 +26,12 @@ packaging==24.0
# pytest
pluggy==1.5.0
# via pytest
psycopg==3.1.18
psycopg-binary==3.1.18
psycopg==3.1.19
psycopg-binary==3.1.19
# via psycopg
pygments==2.17.2
pygments==2.18.0
# via rich
pytest==8.1.1
pytest==8.2.0
# via pytest-django
pytest-django==4.8.0
rich==13.7.1
Expand Down
2 changes: 1 addition & 1 deletion templates/djpress/snippets/post_summary.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ <h2 class="card-title"><a href="{% url 'djpress:post_detail' post.permalink %}">
{% endif %}
</div>
<div class="card-footer text-muted">
<p>Posted on {{ post.date }} by {% post_author %}</p>
<p>Posted on {% post_date %} by {% post_author %}</p>
<p>
Categories:
{% for category in post.categories.all %}
Expand Down
2 changes: 1 addition & 1 deletion templates/djpress/snippets/post_title.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<h2 class="card-title"><a href="{% url 'djpress:post_detail' post.permalink %}">{{ post.title }}</a></h2>
</div>
<div class="card-footer text-muted">
<p>Posted on {{ post.date }} by {% post_author post.author %}</p>
<p>Posted on {{ post_date }} by {% post_author post.author %}</p>
<p>
Categories:
{% for category in post.categories.all %}
Expand Down

0 comments on commit 2d74019

Please sign in to comment.