{% extends "base.html" %} {% block title %}{{ paper.title }}{% endblock %} {% block headers %}
{% 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 %}
Abstract:
{{ paper.abstract|simpletags }}
{% 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 %}
Download: