show already completed tasks
This commit is contained in:
@@ -39,6 +39,17 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Subcategory Edit -->
|
||||
<label>Subcategory</label>
|
||||
<select name="subcategory">
|
||||
<option value="">-- None --</option>
|
||||
{% if entry.activity and entry.activity.subcategories %}
|
||||
{% for sub in entry.activity.subcategories %}
|
||||
<option value="{{ sub }}" {% if sub == entry.subcategory %}selected{% endif %}>{{ sub }}</option>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</select>
|
||||
|
||||
<label>Note</label>
|
||||
<textarea name="note" rows="3" style="width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit;">{{ entry.note }}</textarea>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user