{% extends "epic/base_layout.html" %}
{% load humanize %}
{% block buttons %}
Up
{% endblock buttons %}
{% block content %}
{{ block.super }}
{% for field in fields %}
{{ field.0 }} |
{{ field.1|safe }} |
{% endfor %}
Edit
Delete
{{ vps_pager|safe }}
Part # | Manufacturer Part # |
Vendor Part # | Price |
{% for vp in vps %}
{{ vp.part.html_link|safe }} |
{{ vp.part.mfg }} {{ vp.part.mfg_pn }} |
{{ vp.html_link|safe }} |
$ {{ vp.price|floatformat:6|intcomma }} |
{% endfor %}
{{ vps_pager|safe }}
{{ txtns_pager|safe }}
Date | Transaction | Notes |
{% for txtn in txtns %}
{{ txtn.ts|date:"Y‑m‑d" }} |
{{ txtn.description|safe }} |
{{ txtn.notes|linebreaksbr }} |
{% endfor %}
{{ txtns_pager|safe }}
{% endblock content %}