diff --git a/cookbook/templates/system.html b/cookbook/templates/system.html index 6fd5dfb5c..7647bfeee 100644 --- a/cookbook/templates/system.html +++ b/cookbook/templates/system.html @@ -20,7 +20,7 @@
-

{% trans 'System' %}

+

{% trans 'System' %}

{% blocktrans %} Tandoor Recipes is an open source free software application. It can be found on GitHub. @@ -213,6 +213,14 @@ {% endfor %} {% endif %} +

Cache Test

+ On first load this should be None, on second load it should be the time of the first load. Expiration is set to 10 seconds after that it should be None again.
+ {% if cache_response %} + + Cache entry from {{ cache_response|date:" d m Y H:i:s" }} + {% else %} + No cache entry before load + {% endif %}

Debug