summaryrefslogtreecommitdiff
path: root/templates/packages/removed.html
blob: 2d73013004a4c2ed5c2fecf50896ffc2f988b92e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% extends "base.html" %}
{% load package_extras %}

{% block title %}{{ BRANDING_DISTRONAME }} - Not Available - {{ name }} {{ version }} ({{ arch.name }}){% endblock %}
{% block navbarclass %}anb-packages{% endblock %}

{% block content %}
<div id="pkg-gone" class="box">
    <h2>{{ name }} {{ version }} is no longer available</h2>

    <p>{{ name }} {{ version }} has been removed from the [{{ repo.name|lower }}] repository.</p>

    {% if elsewhere %}
    <p>However, this package or replacements are available elsewhere:</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 %}
</div>
{% endblock %}