32 lines
786 B
HTML
32 lines
786 B
HTML
{% extends "base_site.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}Drafts - Abstract{% endblock %}
|
|
|
|
{% block extrahead %}{{ block.super }}
|
|
<script type="text/javascript" src="{% static 'secr/js/utils.js' %}"></script>
|
|
{% endblock %}
|
|
|
|
{% block breadcrumbs %}{{ block.super }}
|
|
» <a href="../../">Drafts</a>
|
|
» <a href="../">{{ draft.canonical_name }}</a>
|
|
» Abstract
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="module draft-container">
|
|
<h2>View Abstract - {{ draft.canonical_name }}</h2>
|
|
<p>
|
|
{{ draft.abstract }}
|
|
</p>
|
|
<div class="button-group">
|
|
<ul>
|
|
<li><button onclick="window.location='../'">Back to View</button></li>
|
|
</ul>
|
|
</div> <!-- button-group -->
|
|
|
|
</div> <!-- module -->
|
|
|
|
{% endblock %}
|