1
0
mirror of https://github.com/quay/quay.git synced 2026-01-26 06:21:37 +03:00
Files
quay/templates/500.html
Brandon Caton df73b6e9e1 ui: updating references to status.redhat.com (PROJQUAY-6654) (#2645)
Updates references from `status.quay.io` to `status.redhat.com`.
2024-02-07 14:07:38 -05:00

29 lines
793 B
HTML

{% extends "error.html" %}
{% block title %}
<title>Internal Error · Quay</title>
{% endblock %}
{% block content %}
<h3>Something went wrong on our end!</h3>
<h4>
<p><a href="javascript:history.back()">Head on back</a> and retry whatever it was you were doing.</p>
<p>If the issue persists and is blocking you from getting stuff done, <a href="/contact">contact us</a>.</p>
</h4>
{% if has_billing %}
<div style="margin-top: 20px">
Current Service Status:
<span id="status-elem">(Loading)</span>
</div>
<script type="text/javascript" src="https://cdn.statuspage.io/se.js"></script>
<script type="text/javascript">
window.fetchStatusPage({
pageId: 'dn6mqn7xvzz3',
renderTo: '#status-elem'
});
</script>
{% endif %}
{% endblock %}