{% extends 'base.html' %}
{% load typogrify_tags %}
{% load html5_datetime %}
{% load pagination_tags %}
{% block pagetitle %} Publications | Resume{% endblock %}
{% block metadescription %} {% endblock %}
{%block bodyid%}class="resume" id="publications-archive"{%endblock%}
{% block primary %}
Publications
By Publication
{% regroup object_list|dictsort:"publisher_id" by publisher.name as pub_list %}{% for pub in pub_list %}
-
{{ pub.grouper }}
{% for object in pub.list %}{% if forloop.counter < 8 %}
-
(local verson)
{%endif%}{% endfor %}
View all articles published by {{pub.grouper}}
{% endfor %}
{% endblock %}