This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
bistro/keyedcache/templates/keyedcache/view.html

18 lines
583 B
HTML

{% extends "admin/base_site.html" %}
{% load i18n %}
{% block breadcrumbs %}{% if not is_popup %}
<div class="breadcrumbs">
<a href="/admin/">{% trans "Home" %}</a> &rsaquo;
<a href="{% url keyedcache_view %}">{% trans "Cache" %}</a> &rsaquo;
{% trans "Cache View" %}
</div>
{% endif %}{% endblock %}
{% block content %}
<p>[<a href="{% url keyedcache_stats %}">Cache Stats</a>] [<a href="{% url keyedcache_delete %}">Delete from Cache</a>]
<h1>Cache Keys</h1>
<p style="font-size:82%;">{% for key in cached_keys %}{{ key }}, {% endfor %}
</p>
{% endblock %}