blob: f4d6518941d5285cae30fe8c2ac7d4fa06dfebb5 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | {% load cache %}
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <title>Index of Tests</title>
</head>
<body>
    <h1>Index of Tests</h1>
    {% cache 10 index_cache %}
    <ul>
        <li><a href="/jquery/">jQuery 2.0.3</a></li>
        <li><a href="/mootools/">MooTools 1.4.5</a></li>
        <li><a href="/prototype/">Prototype 1.7.1.0</a></li>
    </ul>
    <p><a href="/admin/">Django Admin</a></p>
    {% endcache %}
</body>
</html>
 |