diff options
author | Dan McGee <dan@archlinux.org> | 2012-02-23 10:00:26 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-02-23 10:00:26 -0600 |
commit | 8fb6581c7ace21e36ea65de84b42f9f41826d9a7 (patch) | |
tree | f1373fb63534c9e2afd7257e7a6710bc4d45937f /templates/packages/details.html | |
parent | c7eca65692ab721348a504ffaa7d468141c10846 (diff) |
Remove template caching from package detailsrelease_2012-02-23
Now that we do user-specific stuff, this is more hassle than it is
worth to ensure we keep the right bits around.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/packages/details.html')
-rw-r--r-- | templates/packages/details.html | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/templates/packages/details.html b/templates/packages/details.html index 091e57ec..e12a65ea 100644 --- a/templates/packages/details.html +++ b/templates/packages/details.html @@ -1,5 +1,4 @@ {% extends "base.html" %} -{% load cache %} {% load package_extras %} {% block title %}Arch Linux - {{ pkg.pkgname }} {{ pkg.full_version }} ({{ pkg.arch.name }}){% endblock %} @@ -12,7 +11,6 @@ <h2>Package Details: {{ pkg.pkgname }} {{ pkg.full_version }}</h2> <div id="detailslinks" class="listing"> - <div id="actionlist"> <h4>Package Actions</h4> <ul class="small"> @@ -70,10 +68,8 @@ </ul> </div> {% endif %}{% endwith %} - </div> - {% cache 300 package-details-pkginfo pkg.id %} <table id="pkginfo"> <tr> <th>Architecture:</th> @@ -201,7 +197,6 @@ </div> </div> - {% endcache %} </div> |