timetracker/games/templates/components/table_row.html

18 lines
650 B
HTML
Raw Normal View History

2024-08-08 18:17:43 +00:00
{% fragment as default_content %}
{% for td in data %}
{% if forloop.first %}
<th scope="row"
2024-08-09 09:47:10 +00:00
class="px-6 py-4 font-medium text-gray-900 whitespace-nowrap dark:text-white min-w-30-char max-w-30char text-ellipsis overflow-hidden">
<span title="{{ td }}">{{ td }}</span>
</th>
2024-08-08 18:17:43 +00:00
{% else %}
{% #table_td %}
{{ td }}
{% /table_td %}
{% endif %}
{% endfor %}
{% endfragment %}
2024-08-09 09:47:10 +00:00
<tr class="odd:bg-white odd:dark:bg-gray-900 even:bg-gray-50 even:dark:bg-gray-800 dark:border-gray-700 hover:bg-gray-50 dark:hover:bg-gray-600 border-b">
2024-08-08 18:17:43 +00:00
{{ children|default:default_content }}
</tr>