{% 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" %}. {% if user.is_authenticated %} {% if request.user.userprofile.plotCharts %} Chart plotting on. {% else %} Chart plotting off. {% endif %} {% else %} Chart plotting status unknown - login {% endif %}

{% endblock %} {% block mainblock %} {% load humanize %} {% if homedata.CT %}{% endif %}{% if homedata.RF %}{% endif %}{% if homedata.MG %}{% endif %}{% if homedata.DX %}{% endif %} {% if homedata.CT %}{% endif %}{% if homedata.RF %}{% endif %}{% if homedata.MG %}{% endif %}{% if homedata.DX %}{% endif %}
CTFluoroscopyMammographyRadiography
{{ homedata.ct }}{{ homedata.rf }}{{ homedata.mg }}{{ homedata.dx }}
{% if homedata.CT %}

CT summary table

{% for key,value in homedata.CT.items %} {% endfor %}
ScannerNumber of studiesLatest study
{{ value.displayname }} {{ value.total }} {{ value.latest|naturaltime }}
{% endif %} {% if homedata.RF %}

Fluoroscopy summary table

{% for key,value in homedata.RF.items %} {% endfor %}
RoomNumber of studiesLatest study
{{ value.displayname }} {{ value.total }} {{ value.latest|naturaltime }}
{% endif %} {% if homedata.MG %}

Mammography summary table

{% for key,value in homedata.MG.items %} {% endfor %}
RoomNumber of studiesLatest study
{{ value.displayname }} {{ value.total }} {{ value.latest|naturaltime }}
{% endif %} {% if homedata.DX %}

Radiography summary table

{% for key,value in homedata.DX.items %} {% endfor %}
RoomNumber of studiesLatest study
{{ value.displayname }} {{ value.total }} {{ value.latest|naturaltime }}
{% 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 %}