|
@@ -3,18 +3,18 @@
|
|
|
<h3 class="card-title">Tasks</h3>
|
|
|
</div>
|
|
|
<div class="table-responsive">
|
|
|
- <table class="table card-table table-vcenter">
|
|
|
+ <table class="table table-selectable card-table table-vcenter">
|
|
|
{% for task in tasks-list %}
|
|
|
<tr>
|
|
|
<td class="w-1 pe-0">
|
|
|
- <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task"{% if task.checked %} checked{% endif %} >
|
|
|
+ <input type="checkbox" class="form-check-input m-0 align-middle table-selectable-check" aria-label="Select task"{% if task.checked %} checked{% endif %} >
|
|
|
</td>
|
|
|
<td class="w-100">
|
|
|
<a href="#" class="text-reset">{{ task.name }}</a>
|
|
|
</td>
|
|
|
<td class="text-nowrap text-secondary">
|
|
|
{% include "ui/icon.html" icon="calendar" %}
|
|
|
- {{ forloop.index | random_date: site.randomDateFrom, site.randomDateTo | date: '%B %d, %Y' }}
|
|
|
+ {{ forloop.index | random_date | date: '%B %d, %Y' }}
|
|
|
</td>
|
|
|
<td class="text-nowrap">
|
|
|
<a href="#" class="text-secondary">
|