19 lines
		
	
	
		
			496 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			496 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "administration/base.html" %}
 | |
| 
 | |
| {% load i18n %}
 | |
| {% load utils %}
 | |
| 
 | |
| {% block content %}
 | |
| <div class="container">
 | |
|   {% block above_form %}
 | |
|   {% endblock %}
 | |
|   <div class="">
 | |
|     <form action="" method="post" class="form-horizontal">
 | |
|       {% include 'partials/form.html' with form=form %}
 | |
|       <a class="btn btn-default" href="{% back %}">{% trans "Cancel" %}</a>
 | |
|       <input type="submit" class="btn btn-primary" value="{% trans 'Create' %}" />
 | |
|     </form>
 | |
|   </div>
 | |
| </div>
 | |
| {% endblock %}
 | 
