Cache more templates
This commit is contained in:
parent
eba4142960
commit
bb5b473898
|
@ -1,72 +1,77 @@
|
||||||
{% load pretty %}
|
{% load pretty %}
|
||||||
{% include 'mixins/partials/notify.html' %}
|
|
||||||
|
|
||||||
{% if live is not None %}
|
{% load cache %}
|
||||||
<h1 class="title">Live {{ context_object_name_singular }} info</h1>
|
|
||||||
<table class="table is-fullwidth is-hoverable">
|
|
||||||
<thead>
|
|
||||||
<th>attribute</th>
|
|
||||||
<th>value</th>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{% block live_tbody %}
|
|
||||||
{% for key, item in live.items %}
|
|
||||||
{% if key in pretty %}
|
|
||||||
<tr>
|
|
||||||
<th>{{ key }}</th>
|
|
||||||
<td>
|
|
||||||
{% if item is not None %}
|
|
||||||
<pre>{{ item|pretty }}</pre>
|
|
||||||
{% endif %}
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
{% else %}
|
|
||||||
<tr>
|
|
||||||
<th>{{ key }}</th>
|
|
||||||
<td>
|
|
||||||
{% if item is not None %}
|
|
||||||
{{ item }}
|
|
||||||
{% endif %}
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
{% endblock %}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if object is not None %}
|
{% cache 600 generic_detail request.user.id object live %}
|
||||||
<h1 class="title">{{ title_singular }} info</h1>
|
{% include 'mixins/partials/notify.html' %}
|
||||||
<table class="table is-fullwidth is-hoverable">
|
|
||||||
<thead>
|
{% if live is not None %}
|
||||||
<th>attribute</th>
|
<h1 class="title">Live {{ context_object_name_singular }} info</h1>
|
||||||
<th>value</th>
|
<table class="table is-fullwidth is-hoverable">
|
||||||
</thead>
|
<thead>
|
||||||
<tbody>
|
<th>attribute</th>
|
||||||
{% block tbody %}
|
<th>value</th>
|
||||||
{% for key, item in object.items %}
|
</thead>
|
||||||
{% if key in pretty %}
|
<tbody>
|
||||||
<tr>
|
{% block live_tbody %}
|
||||||
<th>{{ key }}</th>
|
{% for key, item in live.items %}
|
||||||
<td>
|
{% if key in pretty %}
|
||||||
{% if item is not None %}
|
<tr>
|
||||||
<pre>{{ item|pretty }}</pre>
|
<th>{{ key }}</th>
|
||||||
{% endif %}
|
<td>
|
||||||
</td>
|
{% if item is not None %}
|
||||||
</tr>
|
<pre>{{ item|pretty }}</pre>
|
||||||
{% else %}
|
{% endif %}
|
||||||
<tr>
|
</td>
|
||||||
<th>{{ key }}</th>
|
</tr>
|
||||||
<td>
|
{% else %}
|
||||||
{% if item is not None %}
|
<tr>
|
||||||
{{ item }}
|
<th>{{ key }}</th>
|
||||||
{% endif %}
|
<td>
|
||||||
</td>
|
{% if item is not None %}
|
||||||
</tr>
|
{{ item }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
</td>
|
||||||
{% endblock %}
|
</tr>
|
||||||
</tbody>
|
{% endif %}
|
||||||
</table>
|
{% endfor %}
|
||||||
{% endif %}
|
{% endblock %}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if object is not None %}
|
||||||
|
<h1 class="title">{{ title_singular }} info</h1>
|
||||||
|
<table class="table is-fullwidth is-hoverable">
|
||||||
|
<thead>
|
||||||
|
<th>attribute</th>
|
||||||
|
<th>value</th>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{% block tbody %}
|
||||||
|
{% for key, item in object.items %}
|
||||||
|
{% if key in pretty %}
|
||||||
|
<tr>
|
||||||
|
<th>{{ key }}</th>
|
||||||
|
<td>
|
||||||
|
{% if item is not None %}
|
||||||
|
<pre>{{ item|pretty }}</pre>
|
||||||
|
{% endif %}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
{% else %}
|
||||||
|
<tr>
|
||||||
|
<th>{{ key }}</th>
|
||||||
|
<td>
|
||||||
|
{% if item is not None %}
|
||||||
|
{{ item }}
|
||||||
|
{% endif %}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
{% endblock %}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
{% endif %}
|
||||||
|
{% endcache %}
|
|
@ -1,34 +1,32 @@
|
||||||
{% include 'mixins/partials/notify.html' %}
|
{% load cache %}
|
||||||
{% if page_title is not None %}
|
|
||||||
<h1 class="title is-4">{{ page_title }}</h1>
|
|
||||||
{% endif %}
|
|
||||||
{% if page_subtitle is not None %}
|
|
||||||
<h1 class="subtitle">{{ page_subtitle }}</h1>
|
|
||||||
{% endif %}
|
|
||||||
{% load crispy_forms_tags %}
|
|
||||||
|
|
||||||
{% load crispy_forms_bulma_field %}
|
{% cache 600 object_form request.user.id form %}
|
||||||
<form
|
|
||||||
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
{% include 'mixins/partials/notify.html' %}
|
||||||
hx-post="{{ submit_url }}"
|
{% if page_title is not None %}
|
||||||
hx-target="#modals-here"
|
<h1 class="title is-4">{{ page_title }}</h1>
|
||||||
hx-swap="innerHTML">
|
|
||||||
{% csrf_token %}
|
|
||||||
{{ form|crispy }}
|
|
||||||
{% if hide_cancel is not True %}
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
class="button is-light modal-close-button">
|
|
||||||
Cancel
|
|
||||||
</button>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<button type="submit" class="button modal-close-button">Submit</button>
|
{% if page_subtitle is not None %}
|
||||||
</form>
|
<h1 class="subtitle">{{ page_subtitle }}</h1>
|
||||||
|
{% endif %}
|
||||||
|
{% load crispy_forms_tags %}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{% load crispy_forms_bulma_field %}
|
||||||
|
<form
|
||||||
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
||||||
|
hx-post="{{ submit_url }}"
|
||||||
|
hx-target="#modals-here"
|
||||||
|
hx-swap="innerHTML">
|
||||||
|
{% csrf_token %}
|
||||||
|
{{ form|crispy }}
|
||||||
|
{% if hide_cancel is not True %}
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class="button is-light modal-close-button">
|
||||||
|
Cancel
|
||||||
|
</button>
|
||||||
|
{% endif %}
|
||||||
|
<button type="submit" class="button modal-close-button">Submit</button>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
{% endcache %}
|
|
@ -1,45 +1,50 @@
|
||||||
{% include 'mixins/partials/notify.html' %}
|
{% load cache %}
|
||||||
{% if page_title is not None %}
|
|
||||||
<h1 class="title is-4">{{ page_title }}</h1>
|
|
||||||
{% endif %}
|
|
||||||
{% if page_subtitle is not None %}
|
|
||||||
<h1 class="subtitle">{{ page_subtitle }}</h1>
|
|
||||||
{% endif %}
|
|
||||||
<div class="buttons">
|
|
||||||
|
|
||||||
{% if submit_url is not None %}
|
{% cache 600 object request.user.id object %}
|
||||||
<button
|
|
||||||
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
{% include 'mixins/partials/notify.html' %}
|
||||||
hx-get="{{ submit_url }}"
|
{% if page_title is not None %}
|
||||||
hx-trigger="click"
|
<h1 class="title is-4">{{ page_title }}</h1>
|
||||||
hx-target="#modals-here"
|
|
||||||
class="button">
|
|
||||||
<span class="icon-text">
|
|
||||||
<span class="icon">
|
|
||||||
<i class="fa-solid fa-plus"></i>
|
|
||||||
</span>
|
|
||||||
<span>{{ title_singular }}</span>
|
|
||||||
</span>
|
|
||||||
</button>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if delete_all_url is not None %}
|
{% if page_subtitle is not None %}
|
||||||
<button
|
<h1 class="subtitle">{{ page_subtitle }}</h1>
|
||||||
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
|
||||||
hx-delete="{{ delete_all_url }}"
|
|
||||||
hx-trigger="click"
|
|
||||||
hx-target="#modals-here"
|
|
||||||
hx-swap="innerHTML"
|
|
||||||
hx-confirm="Are you sure you wish to delete all {{ context_object_name }}?"
|
|
||||||
class="button">
|
|
||||||
<span class="icon-text">
|
|
||||||
<span class="icon">
|
|
||||||
<i class="fa-solid fa-xmark"></i>
|
|
||||||
</span>
|
|
||||||
<span>Delete all {{ context_object_name }} </span>
|
|
||||||
</span>
|
|
||||||
</button>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
<div class="buttons">
|
||||||
|
|
||||||
{% include detail_template %}
|
{% if submit_url is not None %}
|
||||||
|
<button
|
||||||
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
||||||
|
hx-get="{{ submit_url }}"
|
||||||
|
hx-trigger="click"
|
||||||
|
hx-target="#modals-here"
|
||||||
|
class="button">
|
||||||
|
<span class="icon-text">
|
||||||
|
<span class="icon">
|
||||||
|
<i class="fa-solid fa-plus"></i>
|
||||||
|
</span>
|
||||||
|
<span>{{ title_singular }}</span>
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
{% endif %}
|
||||||
|
{% if delete_all_url is not None %}
|
||||||
|
<button
|
||||||
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
||||||
|
hx-delete="{{ delete_all_url }}"
|
||||||
|
hx-trigger="click"
|
||||||
|
hx-target="#modals-here"
|
||||||
|
hx-swap="innerHTML"
|
||||||
|
hx-confirm="Are you sure you wish to delete all {{ context_object_name }}?"
|
||||||
|
class="button">
|
||||||
|
<span class="icon-text">
|
||||||
|
<span class="icon">
|
||||||
|
<i class="fa-solid fa-xmark"></i>
|
||||||
|
</span>
|
||||||
|
<span>Delete all {{ context_object_name }} </span>
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% include detail_template %}
|
||||||
|
|
||||||
|
{% endcache %}
|
|
@ -1,6 +1,6 @@
|
||||||
{% load cache %}
|
{% load cache %}
|
||||||
|
|
||||||
{% cache 60 objects request.user.id object_list %}
|
{% cache 600 objects request.user.id object_list %}
|
||||||
{% include 'mixins/partials/notify.html' %}
|
{% include 'mixins/partials/notify.html' %}
|
||||||
{% if page_title is not None %}
|
{% if page_title is not None %}
|
||||||
<h1 class="title is-4">{{ page_title }}</h1>
|
<h1 class="title is-4">{{ page_title }}</h1>
|
||||||
|
|
Loading…
Reference in New Issue