{% extends "base.html" %} {% load static %} {% block title %}Delete Stock Record{% endblock %} {% block content %}
This action cannot be undone. The stock record and all associated transaction history will be permanently removed from the system.
| Date | Type | Quantity | Balance | User |
|---|---|---|---|---|
| {{ transaction.date|date:"M d, Y" }} | {{ 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:"System" }} |