2024-09-16 11:45:24 +02:00
|
|
|
package components
|
|
|
|
|
|
|
|
import "gitlab.unjx.de/flohoss/godash/services"
|
|
|
|
|
2024-09-25 15:33:28 +02:00
|
|
|
templ User(user *services.User) {
|
|
|
|
<div class="tooltip tooltip-left" data-tip="Logout">
|
|
|
|
<a class="avatar" href="/logout">
|
|
|
|
<div class="ring-primary ring-offset-base-100 w-12 rounded-full ring-2 ring-offset-2">
|
|
|
|
<img src={ string(templ.SafeURL(user.Gravatar)) }/>
|
|
|
|
</div>
|
|
|
|
</a>
|
2024-09-16 11:45:24 +02:00
|
|
|
</div>
|
|
|
|
}
|