expe.html 674 B

123456789101112131415161718192021222324252627
  1. {% extends 'base.html' %}
  2. {% load staticfiles %}
  3. {% load apptags %}
  4. {% block title %}
  5. Expe {{ expe_name }}
  6. {% endblock %}
  7. {% block content %}
  8. {% if request.session.expe_finished %}
  9. <h3>{{end_text}}</h3>
  10. <br />
  11. <p>You will be redirected in <span id="refreshTime">5</span> sec to home page</p>
  12. {% endif %}
  13. <!-- TODO : Load img from bitmap with javascript `loadImg.js` -->
  14. {% if not request.session.expe_finished %}
  15. <img id="expeImg" src="{{expe_data|get_value_from_dict:'image_path'}}" data-img="{{request.session.img_merged}}"/>
  16. {% endif %}
  17. {% block javascripts %}
  18. {% endblock %}
  19. {% endblock %}