aboutsummaryrefslogtreecommitdiffstats
path: root/lib/toaster/toastergui/templates/unavailable_artifact.html
blob: fc77e405f7ff2af6f4a0b3ec0867dcb2f05c4b61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}
{% load projecttags %}
{% load humanize %}
{% load static %}

{% block title %} Build artifact does not exist - Toaster {% endblock %}

{% block pagecontent %}
    <div class="row">
        <div class="col-md-8">
            <div class="alert alert-info lead top-air">
                <p>The build artifact you are trying to download does not exist.</p>
                <p><a href="javascript:window.history.back()">Back to previous page</a></p>
            </div>
        </div>
    </div>
{% endblock %}