Compare commits
3 Commits
850c2b13b7
...
v1.1.1
Author | SHA1 | Date | |
---|---|---|---|
a2c52a4261 | |||
b2c9bdd7d2 | |||
7536c33a48 |
@ -71,7 +71,7 @@
|
|||||||
{% for entry in test.entries %}
|
{% for entry in test.entries %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<a href="{{ url_for('admin._view_entry', id=entry) }}" >Entry {{ loop.index }}</a>
|
<a href="{{ url_for('admin._view_entry', id=entry.id) }}" >Entry {{ loop.index }}</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
@ -12,6 +12,7 @@ class Config(object):
|
|||||||
SECRET_KEY = os.getenv('SECRET_KEY')
|
SECRET_KEY = os.getenv('SECRET_KEY')
|
||||||
SERVER_NAME = os.getenv('SERVER_NAME')
|
SERVER_NAME = os.getenv('SERVER_NAME')
|
||||||
SESSION_COOKIE_SECURE = True
|
SESSION_COOKIE_SECURE = True
|
||||||
|
WTF_CSRF_TIME_LIMIT = None
|
||||||
|
|
||||||
"""Email Engine Configuration"""
|
"""Email Engine Configuration"""
|
||||||
MAIL_SERVER = os.getenv('MAIL_SERVER')
|
MAIL_SERVER = os.getenv('MAIL_SERVER')
|
||||||
|
@ -25,10 +25,6 @@
|
|||||||
<div class="form-label-group">
|
<div class="form-label-group">
|
||||||
{{ form.club(class_="form-control", placeholder="Enter Affiliated Club") }}
|
{{ form.club(class_="form-control", placeholder="Enter Affiliated Club") }}
|
||||||
{{ form.club.label }}
|
{{ form.club.label }}
|
||||||
<p>
|
|
||||||
Please ensure the spelling is consistent.
|
|
||||||
The field will prompt you with suggested matches.
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="form-label-group">
|
<div class="form-label-group">
|
||||||
{{ form.test_code(class_="form-control test-code-input", placeholder="Enter Exam Code") }}
|
{{ form.test_code(class_="form-control test-code-input", placeholder="Enter Exam Code") }}
|
||||||
|
Reference in New Issue
Block a user