stc

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

error.html (231B)


      1 {% extends 'base.html' %}
      2 
      3 {% block title %}Error{% endblock %}
      4 
      5 {% block content %}
      6 
      7 <div style="text-align:center;">
      8 	<h3>{{ error }}</h3>
      9 	<a href="{{ url_for('meetings.meetings') }}">back to meetings</a>
     10 </div>
     11 
     12 {% endblock %}