{% extends "base.html" %} {% load static %} {% block title %}Delete Drug Interaction{% endblock %} {% block content %}

Delete Drug Interaction

Back to Interaction

Confirm Drug Interaction Deletion

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' %}
Critical Interaction Warning
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 %}
Usage Statistics
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 %}
{% csrf_token %}
These notes will be recorded for audit purposes and clinical review.
{% if object.severity in 'major,contraindicated' %}
Critical interactions require clinical approval for deletion.
{% endif %}
{% if object.severity in 'major,contraindicated' %}
{% endif %}
What happens when you delete this interaction?
  • The drug interaction record will be permanently removed from the system
  • Clinical decision support alerts for this combination will be disabled
  • Prescribers will no longer receive warnings about this drug combination
  • Historical interaction data and alerts will be archived
  • This action will be logged in the audit trail
  • Pharmacy staff may need to manually review affected prescriptions
  • {% if object.severity in 'major,contraindicated' %}
  • Critical interaction removal may require additional clinical oversight
  • Patient safety protocols may need to be updated
  • {% endif %}
Cancel
Patient Safety Guidelines
Important: Drug interaction databases are critical for patient safety. Before deleting any interaction, ensure that:
  • The interaction information is verified as incorrect or outdated
  • Alternative clinical decision support measures are in place if needed
  • Affected prescriptions and patients have been reviewed
  • Pharmacy and clinical staff have been notified of the change
  • Documentation and audit trail requirements are met
Related Information
Interaction Details
  • Interaction ID: {{ object.pk }}
  • Created: {{ object.created_at|date:"M d, Y g:i A" }}
  • Last Updated: {{ object.updated_at|date:"M d, Y g:i A" }}
  • Created By: {{ object.created_by.get_full_name|default:"System" }}
System Information
  • Drug 1 ID: {{ object.drug1.pk }}
  • Drug 2 ID: {{ object.drug2.pk }}
  • Active Status: {{ object.is_active|yesno:"Yes,No" }}
  • Version: {{ object.version|default:"1.0" }}
{% endblock %}