expe_indications.html 374 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. <p>{{indication}}</p>
  9. <br />
  10. <p>Press enter to begin experience</p>
  11. {% block javascripts %}
  12. <script src="{% static "js/indications.js" %}"></script>
  13. {% endblock %}
  14. {% endblock %}