{% extends "base.html" %} {% load static %} {% block title %}{% if object %}Edit{% else %}New{% endif %} Prescription - Pharmacy{% endblock %} {% block content %}

{% if object %}Edit Prescription{% else %}New Prescription{% endif %} {% if object %}{{ object.prescription_number }}{% else %}Create new prescription order{% endif %}

Prescription Details

{% csrf_token %}
{{ form.patient }} {% if form.patient.errors %}
{{ form.patient.errors.0 }}
{% endif %}
Select the patient for this prescription.
{{ form.prescriber }} {% if form.prescriber.errors %}
{{ form.prescriber.errors.0 }}
{% endif %}
Prescribing physician or provider.
{{ form.medication }} {% if form.medication.errors %}
{{ form.medication.errors.0 }}
{% endif %}
Search and select medication.
{{ form.strength }} {% if form.strength.errors %}
{{ form.strength.errors.0 }}
{% endif %}
Medication strength.
{{ form.dosage }} {% if form.dosage.errors %}
{{ form.dosage.errors.0 }}
{% endif %}
Dose amount.
{{ form.dosage_unit }} {% if form.dosage_unit.errors %}
{{ form.dosage_unit.errors.0 }}
{% endif %}
Dosage unit.
{{ form.quantity }} {% if form.quantity.errors %}
{{ form.quantity.errors.0 }}
{% endif %}
Total quantity.
{{ form.days_supply }} {% if form.days_supply.errors %}
{{ form.days_supply.errors.0 }}
{% endif %}
Number of days.
{{ form.frequency }} {% if form.frequency.errors %}
{{ form.frequency.errors.0 }}
{% endif %}
How often to take medication.
{{ form.route }} {% if form.route.errors %}
{{ form.route.errors.0 }}
{% endif %}
Route of administration.
{{ form.instructions }} {% if form.instructions.errors %}
{{ form.instructions.errors.0 }}
{% endif %}
Detailed instructions for patient.
{{ form.priority }} {% if form.priority.errors %}
{{ form.priority.errors.0 }}
{% endif %}
Prescription priority.
{{ form.refills }} {% if form.refills.errors %}
{{ form.refills.errors.0 }}
{% endif %}
Number of refills allowed.
{{ form.due_date }} {% if form.due_date.errors %}
{{ form.due_date.errors.0 }}
{% endif %}
When prescription is needed.
{{ form.is_controlled }} {% if form.is_controlled.errors %}
{{ form.is_controlled.errors.0 }}
{% endif %}
Requires special handling.
{{ form.generic_substitution }} {% if form.generic_substitution.errors %}
{{ form.generic_substitution.errors.0 }}
{% endif %}
Allow generic equivalent.
{{ form.urgent }} {% if form.urgent.errors %}
{{ form.urgent.errors.0 }}
{% endif %}
Requires immediate attention.
{{ form.notes }} {% if form.notes.errors %}
{{ form.notes.errors.0 }}
{% endif %}
Additional notes or comments.

Prescription Guidelines

Best Practices
  • Verify patient allergies before prescribing
  • Check for drug interactions
  • Use clear, specific instructions
  • Include indication when appropriate
  • Verify dosage calculations
  • Consider patient's medical history
Safety Checks
  • Allergy check pending
  • Interaction check pending
  • Dosage verification pending
  • Duplicate therapy check pending

Quick Actions

Prescription Status

Draft prescription
Last saved: Never
Auto-save: Enabled
Validation: Pending
{% endblock %} {% block js %} {% endblock %}