Ben Sturmfels
531a97a3c9
The directory nesting is unnecessary here and confusing to navigate. I've moved all apps to the project subdirectory, currently called "www", but soon to be renamed "conservancy". I've also moved manage.py to the top-level directory.
36 lines
911 B
HTML
36 lines
911 B
HTML
{% extends "base_conservancy.html" %}
|
|
{% block category %}Copyright Assignment{% endblock %}
|
|
{% load static %}
|
|
|
|
{% block outercontent %}
|
|
<style>
|
|
label { display: block; }
|
|
|
|
li.info {
|
|
background: #F0FFB8;
|
|
border: 1px solid #D0DD98;
|
|
}
|
|
</style>
|
|
<div class="mw8 center ph2 ph3">
|
|
<h1>CCS Candidate Upload</h1>
|
|
|
|
<div class="mw7 mb4">
|
|
<p>Please note that a progress bar is not shown and that large uploads may take a significant time.</p>
|
|
|
|
{% if messages %}
|
|
<ul class="messages list mv2 ">
|
|
{% for message in messages %}
|
|
<li class="{{ message.tags }} pa2">{{ message }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
<form action="." method="post" enctype="multipart/form-data" class="mw7">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
|
|
<p><button type="submit" class="ph3 pv2">Next</button></p>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|