{% extends "base.html" %} {% load static %} {% block title %}{{ object.name }} - Medications - Pharmacy{% endblock %} {% block content %}

{{ object.name }} {{ object.generic_name }}

Medication Information

{{ object.generic_name }}
{{ object.brand_name|default:"Not specified" }}
{{ object.manufacturer|default:"Not specified" }}
{{ object.ndc_number|default:"Not specified" }}
{{ object.get_category_display }}
{{ object.get_dosage_form_display }}
{{ object.strength }}
{{ object.get_route_display }}
{{ object.unit_of_measure }}
{% if object.is_active %} Active {% else %} Inactive {% endif %}
{% if object.is_controlled %} Controlled Substance - Schedule {{ object.controlled_schedule }} {% endif %} {% if object.requires_refrigeration %} Requires Refrigeration {% endif %} {% if object.is_high_alert %} High Alert Medication {% endif %} {% if object.is_generic %} Generic Available {% endif %}
{% if object.indications or object.contraindications or object.side_effects %}
Clinical Information
{% if object.indications %}
{{ object.indications|linebreaks }}
{% endif %} {% if object.contraindications %}
{{ object.contraindications|linebreaks }}
{% endif %} {% if object.side_effects %}
{{ object.side_effects|linebreaks }}
{% endif %}
{% endif %} {% if object.usual_adult_dose or object.usual_pediatric_dose or object.maximum_dose %}
Dosage Information
{% if object.usual_adult_dose %}
{{ object.usual_adult_dose }}
{% endif %} {% if object.usual_pediatric_dose %}
{{ object.usual_pediatric_dose }}
{% endif %} {% if object.maximum_dose %}
{{ object.maximum_dose }}
{% endif %}
{% endif %}
Storage and Handling
{{ object.storage_temperature|default:"Room temperature" }}
{{ object.storage_conditions|default:"Store in a cool, dry place" }}
{{ object.shelf_life|default:"Not specified" }}
{{ object.special_handling|default:"Standard handling" }}
{% if object.notes %}
{{ object.notes|linebreaks }}
{% endif %}

Drug Interactions

Click "Check Interactions" to view known drug interactions

Quick Actions

Edit Medication Create Prescription Print Information {% if perms.pharmacy.delete_medication %} Delete Medication {% endif %}

Inventory Status

Loading...
Loading inventory status...

Prescription Statistics

Loading...
Loading statistics...

Medication Details

Created {{ object.created_at|date:"M d, Y" }}
Last Updated {{ object.updated_at|date:"M d, Y" }}
Created By {{ object.created_by.get_full_name|default:"System" }}
{% if object.barcode %}
Barcode
{{ object.barcode }}
{% endif %}
{% endblock %} {% block js %} {% endblock %}