evorepo/templates/packages/files.html
Dan McGee 5fb2fca70a Fix filelists AJAX replacement
We were double nesting the filelist div. Have the AJAX call only return the
contents and not the enclosing div.

Signed-off-by: Dan McGee <dan@archlinux.org>
2010-04-02 17:53:33 -05:00

15 lines
524 B
HTML

{% extends "base.html" %}
{% block title %}Arch Linux - {{ pkg.pkgname }} {{ pkg.pkgver }}-{{ pkg.pkgrel }} - Package File List{% endblock %}
{% block content %}
<div class="box">
<h2 class="title">{{ pkg.pkgname }} {{ pkg.pkgver }}-{{ pkg.pkgrel }}</h2>
<p style="padding: 10px 20px;">
<a href="{{ pkg.get_absolute_url }}">Back to Package</a>
</p>
<div class="listing" id="filelist">
{% include "packages/files-list.html" %}
</div>
</div>
{% endblock %}