job-deleted.html 380 B

123456789101112131415161718
  1. {% extends "base.html" %}
  2. {% block js %}
  3. {% endblock %}
  4. {% block main %}
  5. <div class="alert alert-danger">Your video has expired!</div>
  6. <p>This video has expired and we deleted all we knew about it from our servers!</p>
  7. <p>But do not despair, go and <a href="/">create a new one</a> now!</p>
  8. {% if config["DEBUG"] %}
  9. {% include 'job-info.html' %}
  10. {% endif %}
  11. {% endblock %}