{% extends "base.html" %} {% from "components/ui.html" import page_header, breadcrumb_nav, button %} {% block title %}View Template - {{ config.APP_NAME }}{% endblock %} {% block content %} {% set breadcrumbs = [ {'text': 'Time Entry Templates', 'url': url_for('time_entry_templates.list_templates')}, {'text': template.name} ] %} {{ page_header( icon_class='fas fa-file-lines', title_text=template.name, subtitle_text='View time entry template details', breadcrumbs=breadcrumbs, actions_html='Edit' ) }}

{{ _('Template Details') }}

{{ template.name }}

{% if template.description %}

{{ template.description }}

{% endif %} {% if template.project %}

{{ template.project.name }}

{% endif %} {% if template.task %}

{{ template.task.name }}

{% endif %} {% if template.default_duration %}

{{ template.default_duration }} hours

{% endif %} {% if template.tags %}

{{ template.tags }}

{% endif %}

{% if template.billable %} Yes {% else %} No {% endif %}

{% if template.default_notes %}

{{ template.default_notes }}

{% endif %}

{{ _('Usage Statistics') }}

{{ template.usage_count }}

{% if template.last_used_at %}

{{ template.last_used_at|user_datetime('%Y-%m-%d %H:%M') }} ({{ template.last_used_at|timeago }})

{% endif %}

{{ template.created_at|user_datetime('%Y-%m-%d %H:%M') }}

{{ template.updated_at|user_datetime('%Y-%m-%d %H:%M') }}

Edit
{% endblock %}