{% extends "base.html" %} {% load static %} {% block title %}Medication Management - {{ block.super }}{% endblock %} {% block content %}
Total Medications
Active Medications
Controlled Substances
Formulary Preferred
|
|
Medication | Strength | Drug Class | Schedule | Formulary Status | Status | Actions |
|---|---|---|---|---|---|---|---|
|
|
{% if medication.is_controlled_substance %}
{% else %}
{% endif %}
{{ medication.generic_name }}
{% if medication.brand_name %}
{{ medication.brand_name }}
{% endif %}
{% if medication.ndc_number %}
NDC: {{ medication.ndc_number }} {% endif %} |
{{ medication.strength }}
{{ medication.get_unit_of_measure_display }} |
{{ medication.drug_class }} | {% if medication.is_controlled_substance %} {{ medication.get_controlled_substance_schedule_display }} {% else %} Non-Controlled {% endif %} | {% if medication.formulary_status == 'PREFERRED' %} Preferred {% elif medication.formulary_status == 'NON_PREFERRED' %} Non-Preferred {% elif medication.formulary_status == 'RESTRICTED' %} Restricted {% elif medication.formulary_status == 'PRIOR_AUTH' %} Prior Auth {% else %} Not Covered {% endif %} | {% if medication.is_active %} Active {% else %} Inactive {% endif %} | |
|
No medications found Try adjusting your search criteria or add a new medication |
|||||||