mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
15 lines
386 B
HTML
15 lines
386 B
HTML
{% for item in data['notify_data'] %}
|
|
<!-- <div class="hidden">{{ item['id'] }}</div>-->
|
|
<div class="event">
|
|
<p class="font-weight-medium">{{ item['title'] }}</p>
|
|
<a class="d-flex align-items-center">
|
|
<div class="badge badge-primary">{{ item['date'] }}</div>
|
|
<span class="text-muted ml-2">{{ item['desc'] }}</span>
|
|
</a>
|
|
</div>
|
|
|
|
|
|
|
|
{% end %}
|
|
|