|
|
@@ -325,7 +325,7 @@
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td> <label for="points_award">Points Award:</label> </td>
|
|
|
- <td> <input type="number" name="points_award" value="{{ settings_info[2] }}" size="5" required> points</td>
|
|
|
+ <td> <input type="number" name="points_award" value="{{ settings_info[2] }}" size="5" required> points</td>
|
|
|
<td>How many points do you want to award them?</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
@@ -478,13 +478,12 @@
|
|
|
{% if item.crossed == 'no' %}
|
|
|
<li style="text-decoration:none;">
|
|
|
{{ item.name }}
|
|
|
- <a href="{{ url_for('web_panels.cross', item_id=loop.index0) }}">[Cross Off]</a> <span style="color: red;"><a href="{{ url_for('web_panels.rem_todo_item', item_id=loop.index0) }}">[Remove]</a></span>
|
|
|
+ <a href="{{ url_for('web_panels.cross', item_id=loop.index0) }}">[Cross Off]</a> <a href="{{ url_for('web_panels.rem_todo_item', item_id=loop.index0) }}"><span style="color: red;">[Remove]</span></a>
|
|
|
</li>
|
|
|
{% else %}
|
|
|
<li> <span style="text-decoration:line-through;">
|
|
|
{{ item.name }}</span>
|
|
|
- <a href="{{ url_for('web_panels.uncross', item_id=loop.index0) }}">[Un-Cross]</a> <span style="color: red;"><a href="{{ url_for('web_panels.rem_todo_item', item_id=loop.index0) }}">[Remove]</a></span>
|
|
|
- </li>
|
|
|
+ <a href="{{ url_for('web_panels.uncross', item_id=loop.index0) }}">[Un-Cross]</a> <a href="{{ url_for('web_panels.rem_todo_item', item_id=loop.index0) }}"><span style="color: red;">[Remove]</span></a>
|
|
|
{% endif %}
|
|
|
{% endfor %}
|
|
|
{% endif %}
|