35 lines
		
	
	
	
		
			867 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			35 lines
		
	
	
	
		
			867 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> | ||
|  |   <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> | ||
|  | {% endblock %} |