{% extends "base.html" %} {% block title %}{{ object.title }} | Arbit{% endblock %} {% block content %}

{{ object.title }}

Added by {{ object.created_by.username }} on {{ object.created_at }}
Category
{{ object.category }}
Status
{{ object.get_status_display }}
Purchase price
${{ object.purchase_price }}
Estimated resale
{% if object.estimated_resale_price %}${{ object.estimated_resale_price }}{% else %}Not set{% endif %}
Sold price
{% if object.sold_price %}${{ object.sold_price }}{% else %}Not sold{% endif %}
Profit
{% if object.profit is not None %}${{ object.profit }}{% else %}Pending sale{% endif %}

{{ object.notes|linebreaksbr }}

Sold details

Suggested price: ${{ pricing_suggestion.price }} from {{ pricing_suggestion.source }}

{{ pricing_suggestion.notes }}

{% csrf_token %} {{ sold_form.as_p }}

Add note

{% csrf_token %} {{ note_form.as_p }}

Price history

Notes

{% endblock %}