Açıklama Yok

base.html 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {% extends base_template_shim|default:"layouts/crud_shim.html" %}
  2. {% block crud_view_css %}
  3. <style>
  4. .view-title {
  5. margin-bottom: 5px;
  6. }
  7. .crud-actions {
  8. margin-bottom: 10px;
  9. }
  10. .nested-list-views {
  11. margin-top: 10px;
  12. }
  13. .nested-list-views .crud-actions {
  14. margin-top: 10px;
  15. }
  16. .clickable-row {
  17. cursor: pointer;
  18. }
  19. </style>
  20. {% endblock %}
  21. {% block crud_view_js %}
  22. <script>
  23. $(function() {
  24. $('.clickable-row').click(function() {
  25. window.location = this.dataset.href;
  26. });
  27. });
  28. </script>
  29. {% endblock %}
  30. {% block crud_view_breadcrumbs %}
  31. {% for breadcrumb in breadcrumbs %}
  32. <li {% if forloop.last %}class="active"{% endif %}>
  33. {% if not forloop.last and breadcrumb.url %}
  34. <a href="{{ breadcrumb.url }}">{{ breadcrumb.text }}</a>
  35. {% else %}
  36. {{ breadcrumb.text }}
  37. {% endif %}
  38. </li>
  39. {% endfor %}
  40. {% endblock %}
  41. {% block crud_view_content %}
  42. {% include "crud/actions.html" %}
  43. <h1 class="view-title">{{ view_title }}</h1>
  44. {% endblock %}