Advertisement
Guest User

validation.html

a guest
Apr 14th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. {% extends "rate_setting_app/base.html" %}
  2.  
  3. {% block title %}Rate Setting Validation{% endblock title %}
  4. {% block subtitle %}Validation{% endblock %}
  5.  
  6. {% block content %}
  7. <form method="post" enctype="multipart/form-data">
  8. {% csrf_token %}
  9. <b>Please upload the sheet you want to validate.</b> <br />
  10. <br />
  11. <input type="file" id="file_input_1" name="myfile"> <br />
  12. <br />
  13. <button type="submit">Go</button> <input id="btn_clear" type="button" value="Clear" />
  14. </form>
  15.  
  16. <br />
  17. <b>Validation Results:</b> <br />
  18. <textarea id="ta_results" cols="87" rows="20" disabled>
  19. {% if validation_results %}{{ validation_results }}{% endif %}
  20. </textarea>
  21.  
  22. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement