{% extends "layout.html" %} {% block title %}{{ title }}{% endblock %} {% block content %} {{ breadcrumbs.breadcrumb_header( breadcrumbs=[ {'label': 'Work Log', 'url': url_for('main.list_worklog')} ], title=title, save_button=True ) }} Start Timestamp End Timestamp Contact {% if log.contact_id %} {{ links.entry_link('user', log.contact_id) }} {% endif %} - {% for contact in users %} {{ contact.full_name }} {% endfor %} Work Item {% if log.work_item_id %} {{ links.entry_link('inventory_item', log.work_item_id) }} {% endif %} - {% for item in items %} {{ item.identifier }} {% endfor %} Complete? Follow Up? Quick Analysis? Notes {{ log.notes if log.notes else '' }} {% endblock %}