aboutsummaryrefslogtreecommitdiffstats
path: root/aggregator/templates/aggregator/post_detail.html
blob: eb39f95e095ce572a92a49820d7ba8a2a967b148 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends "aggregator/base.html" %}

{% block content %}
{% include "aggregator/post_content.html" with post=object %}

<div id="pager">
  {% with next=object.get_next_by_updated previous=object.get_previous_by_updated %}
    {% if previous %}
      <div class="nav-prev">
        <a href="/post/{{ previous.pk }}/" id="previous">
          {{ previous.title }}</a>
      </div>
    {% endif %}

    {% if next %}
      <div class="nav-next">
        <a href="/post/{{ next.pk }}/" id="next">{{ next.title }}</a>
      </div>
    {% endif %}
  {% endwith %}
  <div class="clear"></div>

</div>
{% endblock %}