stc

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

meeting.html (1016B)


      1 {% extends 'base.html' %}
      2 
      3 {% block title %}{{ meeting.timestamp.date() }} Meeting{% endblock %}
      4 
      5 {% block content %}
      6 	{% if meeting %}
      7 	<section class="hours-grid"> {# class="meeting">#}
      8 		<a href="{{ url_for('meetings.meetings') }}" class="action-button">back to meetings</a>
      9 			<h2 style="color:red;align:left">{{ meeting.timestamp.date() }}</h2><h3 style="align:right">{{ meeting.timestamp.time().isoformat(timespec='minutes') }}</h3>
     10 			<a href="{{ meeting.location }}">@ {{ meeting.location }}</a>
     11 			<div><p>{{ meeting.meeting_description }}</p></div>
     12 			<div><h4 href="color:red">Documents:</h4><a href="{{ url_for('meetings.upload',meeting_id=meeting['meeting_id']) }}">[upload]</a></div>
     13 			{% if meeting.documents %}
     14 				{% for document in meeting['documents'] %}
     15 				<div>
     16 					<a href="">{{ document }}</a>
     17 				</div>
     18 				{% endfor %}
     19 			{% endif %}
     20 			<a class="action-button" href="{{ url_for('meetings.update',meeting_id=meeting['meeting_id']) }}">modify</a>
     21 		</section>
     22 	{% endif %}
     23 {% endblock %}