mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-31 05:05:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			625 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			625 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% load i18n %}
 | |
| 
 | |
| <div>
 | |
| {% if form.pre_form_info %}
 | |
| <div class='alert alert-info alert-block' role='alert'>
 | |
| {{ form.pre_form_info }}
 | |
| </div>
 | |
| {% endif %}
 | |
| {% if form.pre_form_warning %}
 | |
| <div class='alert alert-warning alert-block' role='alert'>
 | |
| {{ form.pre_form_warning }}
 | |
| </div>
 | |
| {% endif %}
 | |
| </div>
 | |
| 
 | |
| {% block pre_form_content %}
 | |
| {% endblock %}
 | |
| 
 | |
| {% block form %}
 | |
| <form method="post" action='' class='js-modal-form' enctype="multipart/form-data">
 | |
|   {% csrf_token %}
 | |
|   {% load crispy_forms_tags %}
 | |
| 
 | |
|   {% block form_data %}
 | |
|   {% endblock %}
 | |
| 
 | |
|   {% crispy form %}
 | |
| 
 | |
| </form>
 | |
| 
 | |
| {% endblock %}
 | |
| 
 | |
| {% block post_form_content %}
 | |
| {% endblock %}
 |