Remove template caching from package details

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>
This commit is contained in:
Dan McGee 2012-02-23 10:00:26 -06:00
parent c7eca65692
commit 8fb6581c7a

View File

@ -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 @@ <h4>Versions Elsewhere</h4>
</ul>
</div>
{% endif %}{% endwith %}
</div>
{% cache 300 package-details-pkginfo pkg.id %}
<table id="pkginfo">
<tr>
<th>Architecture:</th>
@ -201,7 +197,6 @@ <h3 title="Complete list of files contained within this package">
</div>
</div>
{% endcache %}
</div>