{% extends 'base.html' %} {% load static %} {% block title %}Report Templates{% endblock %} {% block content %}

Report Templates

Add New Template
Clear
{% if report_templates %}
{% for template in report_templates %} {% endfor %}
Template Name Modality Body Part Status Created Actions
{{ template.template_name }} {% if template.template_content %}
{{ template.template_content|truncatechars:50 }} {% endif %}
{{ template.get_modality_display }} {{ template.body_part|default:"All" }} {% if template.is_active %} Active {% else %} Inactive {% endif %} {{ template.created_at|date:"M d, Y" }}
{% if template.is_active %} {% endif %}
{% if is_paginated %} {% endif %} {% else %}
No report templates found

Start by creating your first report template.

Create First Template
{% endif %}
{% endblock %} {% block js %} {% endblock %}