28 lines
No EOL
1.4 KiB
HTML
28 lines
No EOL
1.4 KiB
HTML
{% extends "frontend/base.html" %}
|
|
{% block "content" %}
|
|
|
|
<div class="card shadow mb-4">
|
|
<div class="card-header py-3">
|
|
<h6 class="m-0 font-weight-bold text-primary">Your Moods</h6>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="table-responsive">
|
|
<table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
|
|
<thead>
|
|
<tr>
|
|
<th>Name <i>(Value)</i></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for mood in object_list %}
|
|
<tr onclick="window.location.href='{% url "mood:mood_edit" mood.id %}'">
|
|
<td><i data-order="{{ mood.value }}" style="color:{{ mood.color }};" class="{{ mood.icon }}"></i> {{ mood }} <i>({{ mood.value }})</i></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %} |