Are you sure you want to delete this drug interaction?
This action cannot be undone. The drug interaction record and all associated data will be permanently removed from the system.
Primary Drug
Name: {{ object.drug1.name }}
Generic: {{ object.drug1.generic_name }}
Brand: {{ object.drug1.brand_name|default:"N/A" }}
Class: {{ object.drug1.drug_class|default:"N/A" }}
Interacting Drug
Name: {{ object.drug2.name }}
Generic: {{ object.drug2.generic_name }}
Brand: {{ object.drug2.brand_name|default:"N/A" }}
Class: {{ object.drug2.drug_class|default:"N/A" }}
Interaction Information
Severity:
{{ object.get_severity_display }}
Type: {{ object.get_interaction_type_display|default:"Not specified" }}
Onset: {{ object.get_onset_display|default:"Not specified" }}
Evidence Level: {{ object.get_evidence_level_display|default:"Not specified" }}
Frequency: {{ object.get_frequency_display|default:"Not specified" }}
Status:
{% if object.is_active %}Active{% else %}Inactive{% endif %}
Monitoring Required:
{% if object.requires_monitoring %}
Yes
{% else %}
No
{% endif %}
Contraindicated:
{% if object.contraindicated %}
Yes
{% else %}
No
{% endif %}
Dose Adjustment:
{% if object.dose_adjustment_required %}
Required
{% else %}
Not Required
{% endif %}
Description and Management
{% if object.description %}
Description:
{{ object.description }}
{% endif %}
{% if object.clinical_effects %}
Clinical Effects:
{{ object.clinical_effects }}
{% endif %}
{% if object.management %}
Management:
{{ object.management }}
{% endif %}
{% if object.references %}
References:
{{ object.references }}
{% endif %}
{% if object.severity in 'major,contraindicated' %}
Warning: This is a {{ object.get_severity_display|lower }} drug interaction.
Deleting this record may impact patient safety by removing important clinical decision support.
{% if object.contraindicated %}
Contraindicated Interaction: This interaction is marked as contraindicated,
meaning these drugs should not be used together. Removing this record may allow
dangerous drug combinations to be prescribed.
{% endif %}
{% endif %}
{% if interaction_usage_stats %}
System Impact: This interaction has been flagged {{ interaction_usage_stats.alert_count|default:0 }} time(s)
in the past 30 days and affects {{ interaction_usage_stats.affected_prescriptions|default:0 }} active prescription(s).
{% if interaction_usage_stats.recent_alerts %}
Recent Activity: This interaction was last flagged {{ interaction_usage_stats.last_alert_date|date:"M d, Y" }}.
Deleting it may affect ongoing clinical decision support.
{% endif %}
{% endif %}