expe_indications.html 399 B

123456789101112131415161718192021
  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 experiments</strong></p>
  11. {% endblock %}
  12. {% block javascripts %}
  13. <script src="{% static "js/indications.js" %}"></script>
  14. {% endblock %}