summaryrefslogtreecommitdiffstats
path: root/templates/packages/removed.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/packages/removed.html')
-rw-r--r--templates/packages/removed.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/templates/packages/removed.html b/templates/packages/removed.html
new file mode 100644
index 0000000..17b1f98
--- /dev/null
+++ b/templates/packages/removed.html
@@ -0,0 +1,28 @@
+{% extends "base.html" %}
+{% load url from future %}
+{% load package_extras %}
+
+{% block title %}Arch Linux - Not Available - {{ update.pkgname }} {{ update.old_version }} ({{ update.arch.name }}){% endblock %}
+{% block navbarclass %}anb-packages{% endblock %}
+
+{% block content %}
+<div id="pkg-gone" class="box">
+ <h2>{{ update.pkgname }} {{ update.old_version }} is no longer available</h2>
+
+ <p>{{ update.pkgname }} {{ update.old_version }} has been removed from the [{{ update.repo.name|lower }}] repository.</p>
+
+ {% with update.elsewhere as elsewhere %}{% if elsewhere %}
+ <p>However, this package is available in other repositories:</p>
+ <ul>
+ {% for pkg in elsewhere %}
+ <li>{% pkg_details_link pkg %} {{ pkg.full_version }} [{{ pkg.repo.name|lower }}] ({{ pkg.arch.name }})</li>
+ {% endfor %}
+ </ul>
+ {% else %}
+ <p>Unfortunately, this package cannot be found in any other repositories.
+ Try using the <a href="{% url 'packages-search' %}?name={{ update.pkgname|urlencode }}">package search page</a>,
+ or try <a href="https://aur.archlinux.org/packages.php?K={{ update.pkgname|urlencode }}">searching the AUR</a>
+ to see if the package can be found there.</p>
+ {% endif %}{% endwith %}
+</div>
+{% endblock %}