Compare commits
5 Commits
95cea46a8f
...
v1.1.1
Author | SHA1 | Date | |
---|---|---|---|
a2c52a4261 | |||
b2c9bdd7d2 | |||
7536c33a48 | |||
850c2b13b7 | |||
eb69979f59 |
@ -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')
|
||||||
|
@ -14,6 +14,9 @@
|
|||||||
<div class="container quiz-start-text">
|
<div class="container quiz-start-text">
|
||||||
You can use this panel to adjust the display settings for the exam. Please use the menu below to select the font face and font size. Below is a sample question so you can see how the exam will render with your chosen settings.
|
You can use this panel to adjust the display settings for the exam. Please use the menu below to select the font face and font size. Below is a sample question so you can see how the exam will render with your chosen settings.
|
||||||
</div>
|
</div>
|
||||||
|
<div class="container quiz-start-text">
|
||||||
|
These settings will be stored locally on your browser window. No information about your preferences below will be collected by the app.
|
||||||
|
</div>
|
||||||
<div class="alert alert-primary quiz-start-text" role="alert">
|
<div class="alert alert-primary quiz-start-text" role="alert">
|
||||||
<strong>Note</strong>: Some fonts may not be available depending on your device and/or operating system.
|
<strong>Note</strong>: Some fonts may not be available depending on your device and/or operating system.
|
||||||
</div>
|
</div>
|
||||||
|
Reference in New Issue
Block a user