expe_indications.html 413 B

1234567891011121314151617181920
  1. {% extends 'base.html' %}
  2. {% load staticfiles %}
  3. {% block title %}
  4. Expe {{ expe_name }}
  5. {% endblock %}
  6. {% block content %}
  7. <h3>{{question}}</h3>
  8. <br />
  9. <h5>{{indication}}</h5>
  10. <p id="expeIndication"><strong>Press enter to begin experience</strong></p>
  11. {% block javascripts %}
  12. <script src="{% static "js/indications.js" %}"></script>
  13. {% endblock %}
  14. {% endblock %}