Conflicts: app/__init__.py app/rollerverbrauch/templates/createPitStopForm.html app/rollerverbrauch/templates/newPitStopForm.html app/rollerverbrauch/templates/selectVehice.html app/rollerverbrauch/templates/selectVehicle.html app/templates/newPitStopForm.html app/templates/selectVehice.html
		
			
				
	
	
		
			20 lines
		
	
	
		
			579 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			579 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "layout.html" %}
 | |
| 
 | |
| {% block body %}
 | |
| <div class="col-md-2" ></div>
 | |
| <div class="col-md-8">
 | |
|     <div class="panel panel-default">
 | |
|         <div class="panel-body">
 | |
|             <h3>Edit consumable </h3>
 | |
|             <form class='form-horizontal' method="POST">
 | |
|                 {{ form.hidden_tag() }}
 | |
|                 {{ render_field_with_errors(form.name) }}
 | |
|                 {{ render_field_with_errors(form.unit) }}
 | |
|                 {{ render_field_with_errors(form.submit) }}
 | |
|             </form>
 | |
|         </div>
 | |
|     </div>
 | |
| </div>
 | |
| <div class="col-md-2" ></div>
 | |
| {% endblock %}
 |