mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
In addition, fix up some templates to display pinned comments, and include the unpin form input for pinned comments, which is not yet implemented. Signed-off-by: Kevin Morris <kevr@0cost.org>
22 lines
695 B
HTML
22 lines
695 B
HTML
{% extends "partials/layout.html" %}
|
|
|
|
{% block pageContent %}
|
|
{% include "partials/packages/search.html" %}
|
|
<div id="pkgdetails" class="box">
|
|
<h2>{{ 'Package Details' | tr }}: {{ package.Name }} {{ package.Version }}</h2>
|
|
|
|
{% set result = pkgbase %}
|
|
{% include "partials/packages/actions.html" %}
|
|
|
|
{% set show_package_details = True %}
|
|
{% include "partials/packages/details.html" %}
|
|
|
|
<div id="metadata">
|
|
{% include "partials/packages/package_metadata.html" %}
|
|
</div>
|
|
</div>
|
|
|
|
{% set pkgname = result.Name %}
|
|
{% set pkgbase_id = result.ID %}
|
|
{% include "partials/packages/comments.html" %}
|
|
{% endblock %}
|