{% extends "base.html" %} {% block title %}{{ object.title }} | Arbit{% endblock %} {% block content %} {{ object.title }} Added by {{ object.created_by.username }} on {{ object.created_at }} Edit Mark sold 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 }} Save sold details Add note {% csrf_token %} {{ note_form.as_p }} Save note Price history {% for estimate in price_estimates %} {{ estimate.source }}: ${{ estimate.estimated_price }} on {{ estimate.retrieved_at }} {% empty %} No price estimates yet. {% endfor %} Notes {% for note in notes %} {{ note.created_by.username }} - {{ note.body }} ({{ note.created_at }}) {% empty %} No notes yet. {% endfor %} {% endblock %}
{{ object.notes|linebreaksbr }}
{{ pricing_suggestion.notes }}