stc

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

get_meeting_file.html (648B)


      1 {% extends 'base.html' %}
      2 
      3 {% block title %}Get File{% 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 class="hours-grid">{#class="meeting">#}
     14 		{# {{ item.read() }} #}
     15 		<ul>{% for file in files %}
     16 			<li>
     17 				<a href="{{ url_for('meetings.get_meeting_file', fid=file._id) }}">
     18 					{{ file.filename }}
     19 					{{ file }}
     20 				</a>
     21 				<a href="{{url_for('meetings.delete_meeting_file',fid=file._id)}}">remove</a>
     22 			</li>
     23 		{% endfor %}</ul>
     24 	</section>
     25 {% endblock %}