Guest User

Untitled

a guest
Jan 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.75 KB | None | 0 0
  1.  <div class="content_info">
  2.     <p class="byline">{% if story.one_off_byline %}{{ story.one_off_byline }}{% else %}{% if story.bylines.count %}By {% for author in story.bylines.all %}<a href="{{ author.get_absolute_url }}">{{ author }}</a>{% if not forloop.last %}, {% endif %}{% endfor %}{% endif %}{% endif %}</p>
  3.  
  4.     {% with story.update_date|default:story.pub_date as display_date %}
  5.       <p class="datetime">
  6.         <a href="{{ story.get_absolute_url }}">
  7.           {% if at_revision %}
  8.             As of {{ at_revision.date_created|date:"l, F j, Y" }}
  9.           {% else %}
  10.             {{ display_date|date:"l, F j, Y" }}
  11.           {% endif %}
  12.         </a>
  13.       </p>
  14.     {% endwith %}
  15.   </div>
  16.  
  17.   {% include "includes/pagination.html" %}
Add Comment
Please, Sign In to add comment