job-pending.html 541 B

1234567891011121314151617181920
  1. {% extends "base.html" %}
  2. {% block js %}
  3. {% endblock %}
  4. {% block main %}
  5. {% if started %}
  6. <p>We are currently making your video!</p>
  7. <p>Please reload this page from time to time. When your video is created, you will have a download link here.</p>
  8. {% else %}
  9. <p>We got your files and we are about to start making your video!</p>
  10. <p>Please reload this page from time to time. When your video is created, you will have a download link here.</p>
  11. {% endif %}
  12. {% if config["DEBUG"] %}
  13. {% include 'job-info.html' %}
  14. {% endif %}
  15. {% endblock %}