mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 02:39:46 +02:00
24 lines
No EOL
940 B
HTML
24 lines
No EOL
940 B
HTML
<div class="userNotifications {element_class} {type}" id="{element_id}">
|
|
<a href="{href}" onclick="{onclick}" class="list-group-item {status}">
|
|
<div class="media">
|
|
<div class="media-left">
|
|
<img src="{placeholder}" data-src="{image}" class="media-object lazyload">
|
|
</div>
|
|
<div class="media-body">
|
|
<strong class="media-heading">
|
|
{title}
|
|
</strong>
|
|
<p>{msg}</p>
|
|
{html}
|
|
<small class="pull-right">{created}</small>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
<div class="icon bg-{type}">{icon}</div>
|
|
<button class="btn btn-default btn-outline deleteBtn"
|
|
onclick="deleteUserNotification({id}, this);return false;"
|
|
data-toggle="tooltip" title="Delete"
|
|
data-placement="left">
|
|
<i class="fas fa-times-circle"></i>
|
|
</button>
|
|
</div> |