{% extends 'base.html' %} {% block title %}Owner Draws{% endblock %} {% block content %}

Owner Draws

➕ Add Draw
{% for draw in draws %} {% empty %} {% endfor %}
Description Account Amount Date By
{{ draw.description|default:"—" }} {{ draw.account.name }} {{ business.currency }} {{ draw.amount|floatformat:0 }} {{ draw.date|date:"d M Y" }} {{ draw.created_by.username|default:"—" }}
No draws recorded yet. Add first draw
{% endblock %}