expe_indications.html 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. <br />
  11. <br />
  12. <div class="row">
  13. <div class="col-md-4 offset-md-4">
  14. <form method="GET" action="/expe">
  15. <div class="form-group">
  16. <input type="hidden" name="scene" value="{{scene_name}}"/>
  17. <input type="hidden" name="expe" value="{{expe_name}}"/>
  18. <input type="hidden" name="iteration" value="0"/>
  19. <label for="experimentId">Select experiment identifier:</label>
  20. <input type="text" class="form-control" name="experimentId" placeholder="Enter your experiment identifier"/>
  21. </div>
  22. </form>
  23. </div>
  24. </div>
  25. <p id="expeIndication"><strong>Press enter to begin experiments</strong></p>
  26. {% endblock %}
  27. {% block javascripts %}
  28. <script src="{% static "js/indications.js" %}"></script>
  29. {% endblock %}