job-failed.html 600 B

1234567891011121314151617181920
  1. {% extends "base.html" %}
  2. {% block js %}
  3. {% endblock %}
  4. {% block main %}
  5. <div class="row">
  6. <div class="col-lg-12">
  7. <div class="alert alert-danger">Joining failed!</div>
  8. <p class="text-danger">Oh, snap, something went terribly wrong and we couldn't make your video.</p>
  9. <p>Please try again later. You can send us this <code>{{ job.task_uuid }}</code> to help us figure out what happened. If you chose to do so, please send it to us before {{ job.expires.strftime('%d %b %Y at %H:%M') }}, otherwise all about this video will be deleted by then.</p>
  10. </div>
  11. </div>
  12. {% endblock %}