{% extends "base.html" %} {% load static %} {% block title %}{{ object.medication.name }} Inventory - Pharmacy{% endblock %} {% block content %}
| Date | Type | Quantity | Balance | User | Notes |
|---|---|---|---|---|---|
| {{ transaction.created_at|date:"M d, H:i" }} | {{ transaction.get_transaction_type_display }} | {% if transaction.transaction_type == 'IN' %}+{% elif transaction.transaction_type == 'OUT' %}-{% endif %}{{ transaction.quantity }} | {{ transaction.balance_after }} | {{ transaction.user.get_full_name|default:transaction.user.username }} | {{ transaction.notes|truncatechars:30|default:"-" }} |
No transactions recorded yet.
{{ object.medication.storage_conditions }}
{{ object.medication.special_handling }}