forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-31 11:12:04 -06:00
parent 5ab5a9092a
commit dff345bd99
1 changed files with 15 additions and 14 deletions

View File

@ -11,20 +11,21 @@
{% if actions %} {% if actions %}
<ul class="flex flex-col divide-y space-y-2 mb-0 list-none"> <ul class="flex flex-col divide-y space-y-2 mb-0 list-none">
{% for ma in actions %} {% for ma in actions %}
<li id="action-{{ma.id}}" class="relative"> <li id="action-{{ma.id}}" class="relative flex">
<a href="#" class="flex items-center"> <div class="w-6 h-6 flex justify-center items-center flex-shrink-0">
<div class="pl-2 text-gray-500 dark:text-gray-400 text-sm"> <i class="far {{ ma.icon }} {{ma.color}} text-lg fa-fw"></i>
<div> </div>
<a href="{{ma.user.url}}" class="font-font text-black dark:text-gray-200 hover:text-primary" target="_self">@{{ma.user.username}} <div class="pl-2 text-gray-500 dark:text-gray-400 text-sm">
</a> <div>
<span>{{ma.string | safe}}</span> <a href="{{ma.user.url}}" class="font-font text-black dark:text-gray-200 hover:text-primary" target="_self">@{{ma.user.username}}
</div> </a>
<div class="text-gray-400 dark:text-gray-500 text-xs"> <span>{{ma.string | safe}}</span>
<span>{{ma.age_string}}</span> </div>
</div> <div class="text-gray-400 dark:text-gray-500 text-xs">
</div> <span>{{ma.age_string}}</span>
</a> </div>
</li> </div>
</li>
{% endfor %} {% endfor %}
</ul> </ul>
{% else %} {% else %}