2013-03-07 02:54:48 +00:00
|
|
|
{% extends "work_list.html" %}
|
2013-03-05 21:18:54 +00:00
|
|
|
{% load endless %}
|
|
|
|
{% load lang_utils %}
|
|
|
|
|
|
|
|
{% block title %} Works published by {{ pubname }} {% endblock %}
|
2013-03-26 18:53:48 +00:00
|
|
|
{% block userblock1 %}
|
|
|
|
{% if publisher %}
|
2014-07-24 18:57:14 +00:00
|
|
|
<div class="publogo"><a href="{{ publisher.url }}"><img src="{{ publisher.logo_url }}" alt="{{ pubname }} logo" width="220" /></a></div>
|
2013-03-26 18:53:48 +00:00
|
|
|
{% else %}
|
|
|
|
{{ block.super }}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
2013-03-07 02:54:48 +00:00
|
|
|
{% block userblock2 %}
|
2013-03-26 18:53:48 +00:00
|
|
|
{% if publisher %}
|
|
|
|
<span class="special-user-name">Books from <a href="{{ publisher.url }}">{{ pubname }}</a> {% if pub_lang %}( {{pub_lang|ez_lang_name}} ) {% endif %}</span>
|
|
|
|
<div class="description">{{ publisher.description|safe }}</div>
|
|
|
|
{% else %}
|
|
|
|
<span class="special-user-name">Books from {{ pubname }} {% if pub_lang %}( {{pub_lang|ez_lang_name}} ) {% endif %}</span>
|
|
|
|
{% endif %}
|
2013-03-05 21:18:54 +00:00
|
|
|
{% endblock %}
|
2013-03-26 03:41:59 +00:00
|
|
|
|
2014-10-27 15:55:46 +00:00
|
|
|
{% block add_more %}{% endblock %}
|
|
|
|
|
|
|
|
{% block marcform %}
|
|
|
|
<form method="GET" action="{% url bypubname_list_marc facet pubname.id %}">
|
|
|
|
{% include 'marc_form.html' %}
|
|
|
|
<input type="submit" name="submit" value="download MARC" id="submit">
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|