Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {% extends "rate_setting_app/base.html" %}
- {% block title %}Rate Setting Validation{% endblock title %}
- {% block subtitle %}Validation{% endblock %}
- {% block content %}
- <form method="post" enctype="multipart/form-data">
- {% csrf_token %}
- <b>Please upload the sheet you want to validate.</b> <br />
- <br />
- <input type="file" id="file_input_1" name="myfile"> <br />
- <br />
- <button type="submit">Go</button> <input id="btn_clear" type="button" value="Clear" />
- </form>
- <br />
- <b>Validation Results:</b> <br />
- <textarea id="ta_results" cols="87" rows="20" disabled>
- {% if validation_results %}{{ validation_results }}{% endif %}
- </textarea>
- {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement