| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {% extends base_template_shim|default:"layouts/crud_shim.html" %}
- {% block crud_view_css %}
- <style>
- .view-title {
- margin-bottom: 5px;
- }
- .crud-actions {
- margin-bottom: 10px;
- }
- .nested-list-views {
- margin-top: 10px;
- }
- .nested-list-views .crud-actions {
- margin-top: 10px;
- }
- .clickable-row {
- cursor: pointer;
- }
- </style>
- {% endblock %}
- {% block crud_view_js %}
- <script>
- $(function() {
- $('.clickable-row').click(function() {
- window.location = this.dataset.href;
- });
- });
- </script>
- {% endblock %}
- {% block crud_view_breadcrumbs %}
- {% for breadcrumb in breadcrumbs %}
- <li {% if forloop.last %}class="active"{% endif %}>
- {% if not forloop.last and breadcrumb.url %}
- <a href="{{ breadcrumb.url }}">{{ breadcrumb.text }}</a>
- {% else %}
- {{ breadcrumb.text }}
- {% endif %}
- </li>
- {% endfor %}
- {% endblock %}
- {% block crud_view_content %}
- {% include "crud/actions.html" %}
- <h1 class="view-title">{{ view_title }}</h1>
- {% endblock %}
|