tag.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {% extends 'generic/object.html' %}
  2. {% load helpers %}
  3. {% load plugins %}
  4. {% block breadcrumbs %}
  5. <li><a href="{% url 'extras:tag_list' %}">Tags</a></li>
  6. <li>{{ object }}</li>
  7. {% endblock %}
  8. {% block content %}
  9. <div class="row">
  10. <div class="col col-md-6">
  11. <div class="card">
  12. <h5 class="card-header">
  13. Tag
  14. </h5>
  15. <div class="card-body">
  16. <table class="table table-hover panel-body attr-table">
  17. <tr>
  18. <th scope="row">Name</th>
  19. <td>
  20. {{ object.name }}
  21. </td>
  22. </tr>
  23. <tr>
  24. <th scope="row">Slug</th>
  25. <td>
  26. {{ object.slug }}
  27. </td>
  28. </tr>
  29. <tr>
  30. <th scope="row">Tagged Items</th>
  31. <td>
  32. {{ items_count }}
  33. </td>
  34. </tr>
  35. <tr>
  36. <th scope="row">Color</th>
  37. <td>
  38. <span class="color-label" style="background-color: #{{ object.color }}">&nbsp;</span>
  39. </td>
  40. </tr>
  41. <tr>
  42. <th scope="row">Description</th>
  43. <td>
  44. {{ object.description|placeholder }}
  45. </td>
  46. </tr>
  47. </table>
  48. </div>
  49. </div>
  50. </div>
  51. <div class="col col-md-6">
  52. {% include 'panel_table.html' with table=items_table heading='Tagged Objects' %}
  53. {% include 'inc/paginator.html' with paginator=items_table.paginator page=items_table.page %}
  54. </div>
  55. </div>
  56. <div class="row">
  57. <div class="col col-md-12">
  58. {% include 'inc/paginator.html' with paginator=taggeditem_table.paginator page=taggeditem_table.page %}
  59. </div>
  60. </div>
  61. {% plugin_full_width_page object %}
  62. {% endblock %}