Brak opisu

listing_detail.html 767B

123456789101112131415161718
  1. {% extends 'public_frontend/base.html' %}
  2. {% block title %}Listing {{ listing.id }}{% endblock %}
  3. {% block content %}
  4. <article class="bg-white rounded shadow p-6">
  5. <h1 class="text-2xl font-semibold mb-1">{{ listing.title }}</h1>
  6. <div class="text-sm text-gray-500 mb-4">Status: {{ listing.status }}{% if listing.ends_at %} • Ends {{ listing.ends_at }}{% endif %}</div>
  7. <p class="prose max-w-none">{{ listing.description|linebreaks }}</p>
  8. <h2 class="font-semibold mt-6 mb-2">Items</h2>
  9. <ul class="list-disc ml-6 text-sm text-gray-700">
  10. {% for it in listing.items.all %}
  11. <li>{{ it.material.name }} — {{ it.quantity_estimate }} {{ it.get_unit_display }}</li>
  12. {% empty %}
  13. <li>No items listed</li>
  14. {% endfor %}
  15. </ul>
  16. </article>
  17. {% endblock %}