regluit/frontend/templates/setup_campaign.html

35 lines
1.1 KiB
HTML
Raw Normal View History

{% extends "basedocumentation.html" %}
{% block title %}Campaign Setup{% endblock %}
{% block doccontent %}
<h2>Set up campaign</h2>
<div class="book-detail-info">
<h2 class="book-name">Title: {{ work.title }}</h2>
<h3 class="book-author">Authors: {{ work.author }}</h3>
<h3 class="book-year">Published: {{ work.editions.all.0.publication_date }}</h3>
<h3 class="book-author">Language: {{ work.editions.all.0.language }}</h3>
</div>
2011-11-06 21:53:33 +00:00
<form action="#">
<h3>Description of the work to be offered</h3>
This should include:
2011-11-06 21:53:33 +00:00
<ul>
<li>A synopsis of the work.
<li>Hyperlinks for the author(s), publisher making the offer, or for the work itself.
2011-11-06 21:53:33 +00:00
</ul>
<textarea cols="80" rows="20" name="description">
2011-11-06 21:53:33 +00:00
</textarea>
<h3>Offer details</h3>
This should include:
2011-11-06 21:53:33 +00:00
<ul>
<li>Details about the edition being offered.
<li>Hyperlinks for the author(s), publisher making the offer, or for the work itself.
</uL>
<textarea cols="80" rows="20" name="details">
</textarea>
2011-11-06 21:53:33 +00:00
</ul>
</form>
{% endblock %}