{% extends "base.html" %} {% load tagging_tags %} {% block title %}{{ book.a_title }} :: Pathagar Book Server{% endblock %} {% block script %} {{ block.super }} $('#search').example('Book Search...'); {% endblock %} {% block content %}

{{ book.a_title }}

by {{ book.a_author }}


{% if user.is_authenticated %}
Edit Remove


{{ book.a_status }}

{% endif %} {% if book.tags.count != 0 %}
{% for tag in book.tags.all %} {{ tag.name }} {% endfor %}

{% endif %}
{% ifnotequal book.dc_language None %}
{{ book.dc_language }}
{% else %}
Unknown
{% endifnotequal %}
{{ book.downloads }}

{{ book.dc_publisher }}

{{ book.dc_issued }}

{{ book.dc_rights }}

{{ book.a_summary }}


{% endblock %}