{% extends "remapp/base.html" %} {% block toprow %}

OpenREM database browser and export

{% if not users_in_groups %}

There are no users in any of the groups

You will need to allocate users to a group before using this system - you can do this here. You will need to know the superuser username and password you used when you installed the database.

Make sure there is at least one Admin user. You can return to the user config page later by using the 'Manage users' link on the admin menu.

{% endif %}

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 %}