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 %}
 |