{% extends 'base.html' %} {% load static %} {% block title %}Laboratory Tests{% endblock %} {% block content %}

Laboratory Tests

Add New Test
Clear
{% if lab_tests %}
{% for test in lab_tests %} {% endfor %}
Test Code Test Name Category Specimen Type Turnaround Time Status Actions
{{ test.test_code }} {{ test.test_name }} {% if test.test_description %}
{{ test.test_description|truncatechars:50 }} {% endif %}
{{ test.get_category_display }} {{ test.get_specimen_type_display }} {{ test.turnaround_time_hours }} hours {% if test.is_active %} Active {% else %} Inactive {% endif %}
{% if test.is_active %} {% endif %}
{% if is_paginated %} {% endif %} {% else %}
No laboratory tests found

Start by adding your first laboratory test.

Add First Test
{% endif %}
{% endblock %}