job-ready.html 369 B

1234567891011121314151617181920
  1. {% extends "base.html" %}
  2. {% block js %}
  3. {% endblock %}
  4. {% block main %}
  5. <p>Your video is ready!</p>
  6. <p>
  7. <a href="{{ url_for('download_file', job_id=job.uniqid) }}" class="btn btn-lg btn-success">
  8. <span class="glyphicon glyphicon-download"></span> Download video
  9. </a>
  10. </p>
  11. {% if config["DEBUG"] %}
  12. {% include 'job-info.html' %}
  13. {% endif %}
  14. {% endblock %}