{% extends "remapp/base.html" %}
{% block toprow %}
OpenREM database browser and export
There are {{ homedata.total }} studies in this database. Page last refreshed on {% now "jS F Y \a\t H:i" %}.
{% endblock %}
{% block mainblock %}
{% load humanize %}
{% if homedata.CT %}CT | {% endif %}{% if homedata.RF %}Fluoroscopy | {% endif %}{% if homedata.MG %}Mammography | {% endif %}{% if homedata.DX %}Radiography | {% endif %}
{% if homedata.CT %}{{ homedata.ct }} | {% endif %}{% if homedata.RF %}{{ homedata.rf }} | {% endif %}{% if homedata.MG %}{{ homedata.mg }} | {% endif %}{% if homedata.DX %}{{ homedata.dx }} | {% endif %}
{% if homedata.CT %}
CT summary table
{% endif %}
{% if homedata.RF %}
Fluoroscopy summary table
{% endif %}
{% if homedata.MG %}
Mammography summary table
{% endif %}
{% if homedata.DX %}
Radiography summary table
{% endif %}
{% if not homedata.CT and not homedata.RF and not homedata.MG and not homedata.DX %}
No data to display in the system
There are currently no studies from any modality stored in the database. Add some to see a summary of each on this page.
{% endif %}
{% endblock %}