{% extends "base.html" %} {% block title %}{{ paper.title }}{% endblock %} {% block headers %}

{% for author in paper.ordered_authors() %}{% if not loop.first %} - {% endif %}{{ author.html_short() }}{% endfor %}

{{ paper.title|span_math }}

{{ paper.html_admin_buttons() }} {% endblock headers %} {% block info %} {{ paper.html_timestamps() }}
[BibTeX]
{{ facebook_like(paper.get_absolute_url()) }} {% endblock info %} {% block content %}

{% if paper.paper_type %} {{ paper.paper_type }}
{% endif %}
{% if paper.creation_time %} Inserted: {{ paper.creation_time|date }}
{% endif %} {% if paper.modification_time and not paper.modification_time == paper.creation_time %} Last Updated: {{ paper.modification_time|date }}
{% endif %}
{% if paper.journal %} Journal: {{ paper.journal }}
{% endif %} {% if paper.volume %} Volume: {{ paper.volume }}
{% endif %} {% if paper.number %} Number: {{ paper.number }}
{% endif %} {% if paper.pages %} Pages: {{ paper.pages }}
{% endif %} {% if paper.year %} Year: {{ paper.year }}
{% endif %} {% if paper.doi %} Doi: {{ paper.doi }}
{% endif %} {% if paper.arxiv_id %}

ArXiv: {{ paper.arxiv_id }} PDF
{% endif %} {% if paper.notes %} Notes: {{ paper.notes|simpletags }}
{% endif %} {% if paper.links.all() %} Links: {% for link in paper.links.all() %} {{ link.description }}{% if not loop.last %},{% endif %} {% endfor %}
{% endif %}

{% if paper.abstract %}

Abstract:
{{ paper.abstract|simpletags }}

{% endif %}

{% if paper.tags.all() %} Tags: {% for tag in paper.tags.all() %}{{ tag.html() }}
{% if not loop.last %}, {% endif %}{% endfor %} {% endif %} {% if paper.keywords.all() %} Keywords: {% for keyword in paper.keywords.all() %}{% if not loop.first %}, {% endif %}{{ keyword.name }}{% endfor %} {% endif %}

{% if documents %}


Download:

{% endif %} {% if paper.editable %}

[add/manage documents]

{% endif %} {% endblock %}