stc

a simple time card webapp
git clone _git@git.brennen.work:stc.git
Log | Files | Refs | README

fleet.html (415B)


      1 {% extends 'base.html' %}
      2 
      3 {% block title %}Fleet{% endblock %}
      4 
      5 {% block content %}
      6 	{% with messages = get_flashed_messages() %}
      7 	{% if messages %}
      8 		{% for message in messages %}
      9 		<div id="messagebanner"><p>{{ message }}</p></div>
     10 		{% endfor %}
     11 	{% endif %}
     12 	{% endwith %}
     13 	<section>
     14 		Woo Hoo, Fleet Page!
     15 		This page will be for checking out a vehicle
     16 		display the vehicle checks
     17 	</section>
     18 {% endblock %}