stc

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

branch.html (538B)


      1 {% extends 'base.html' %}
      2 
      3 {% block title %}{{ branch['branch_name'] }} Branch{% endblock %}
      4 
      5 {% block content %}
      6 	{% if branch %}
      7 	<section class="hours-grid"> {# class="meeting">#}
      8 		<a href="{{ url_for('branches.branches') }}" class="action-button">back to branches</a>
      9 			<h2 style="color:red;align:left">{{ branch['branch_name'] }}</h2>
     10 			<div><p>{{ branch['address'] }}</p></div>
     11 			<a class="action-button" href="{{ url_for('branches.update_branch',branch_id=branch['_id']) }}">modify</a>
     12 		</section>
     13 	{% endif %}
     14 {% endblock %}