{% extends 'layouts/base.html' %} {% load i18n static %} {% block title %}{% trans "Presentations" %} — PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% trans "Presentations" %}

{% trans "Create and present beautiful slide decks from your reports" %}

{% trans "All" %} {% for status_val, status_label in status_choices %} {{ status_label }} {% endfor %}
{% if presentations %}
{% for pres in presentations %}
{{ pres.slide_count }} {% trans "slides" %}

{{ pres.title }}

{% if pres.subtitle %}

{{ pres.subtitle }}

{% endif %}
{{ pres.get_status_display }} {{ pres.created_at|date:"M d, Y" }}
{% if pres.hospital %} {{ pres.hospital.name }} {% endif %}
{% endfor %}
{% else %}

{% trans "No Presentations Yet" %}

{% trans "Create your first presentation to replace PDF and PowerPoint reports with beautiful in-app slides." %}

{% endif %}
{% endblock %}