You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
155 lines
5.3 KiB
155 lines
5.3 KiB
{{with .Data}} |
|
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}} |
|
<div class="page-title"> User </div> |
|
|
|
<div class="user-info-container"> |
|
<div> |
|
<div class="user-profile-img-container"> |
|
<a class="img-link" href="{{.User.AvatarStatic}}" target="_blank"> |
|
<img class="user-profile-img" src="{{.User.AvatarStatic}}" alt="profile-avatar" height="96" /> |
|
</a> |
|
</div> |
|
<div class="user-profile-details-container"> |
|
<div> |
|
<span class="status-dname"> {{EmojiFilter .User.DisplayName .User.Emojis}} </span> |
|
<span class="status-uname"> @{{.User.Acct}} </span> |
|
<a class="remote-link" href="{{.User.URL}}" target="_blank" title="remote profile"> |
|
source |
|
</a> |
|
</div> |
|
{{if not .IsCurrent}} |
|
<div> |
|
<span> {{if .User.Pleroma.Relationship.FollowedBy}} follows you - {{end}} </span> |
|
{{if .User.Pleroma.Relationship.Following}} |
|
<form class="d-inline" action="/unfollow/{{.User.ID}}" method="post"> |
|
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}"> |
|
<input type="submit" value="unfollow" class="btn-link"> |
|
</form> |
|
{{else}} |
|
<form class="d-inline" action="/follow/{{.User.ID}}" method="post"> |
|
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}"> |
|
<input type="submit" value="{{if .User.Pleroma.Relationship.Requested}}resend request{{else}}follow{{end}}" class="btn-link"> |
|
</form> |
|
{{end}} |
|
{{if .User.Pleroma.Relationship.Requested}} |
|
- |
|
<form class="d-inline" action="/unfollow/{{.User.ID}}" method="post"> |
|
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}"> |
|
<input type="submit" value="cancel request" class="btn-link"> |
|
</form> |
|
{{end}} |
|
- |
|
{{if .User.Pleroma.Relationship.Subscribing}} |
|
<form class="d-inline" action="/unsubscribe/{{.User.ID}}" method="post"> |
|
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}"> |
|
<input type="submit" value="unsubscribe" class="btn-link"> |
|
</form> |
|
{{else}} |
|
<form class="d-inline" action="/subscribe/{{.User.ID}}" method="post"> |
|
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}"> |
|
<input type="submit" value="subscribe" class="btn-link"> |
|
</form> |
|
{{end}} |
|
</div> |
|
<div> |
|
{{if .User.Pleroma.Relationship.Blocking}} |
|
<form class="d-inline" action="/unblock/{{.User.ID}}" method="post"> |
|
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}"> |
|
<input type="submit" value="unblock" class="btn-link"> |
|
</form> |
|
{{else}} |
|
<form class="d-inline" action="/block/{{.User.ID}}" method="post"> |
|
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}"> |
|
<input type="submit" value="block" class="btn-link"> |
|
</form> |
|
{{end}} |
|
- |
|
{{if .User.Pleroma.Relationship.Muting}} |
|
<form class="d-inline" action="/unmute/{{.User.ID}}" method="post"> |
|
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}"> |
|
<input type="submit" value="unmute" class="btn-link"> |
|
</form> |
|
{{else}} |
|
<form class="d-inline" action="/mute/{{.User.ID}}" method="post"> |
|
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}"> |
|
<input type="submit" value="mute" class="btn-link"> |
|
</form> |
|
{{end}} |
|
{{if .User.Pleroma.Relationship.Following}} |
|
- |
|
{{if .User.Pleroma.Relationship.ShowingReblogs}} |
|
<form class="d-inline" action="/follow/{{.User.ID}}?reblogs=false" method="post"> |
|
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}"> |
|
<input type="submit" value="hide retweets" class="btn-link"> |
|
</form> |
|
{{else}} |
|
<form class="d-inline" action="/follow/{{.User.ID}}" method="post"> |
|
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}"> |
|
<input type="submit" value="show retweets" class="btn-link"> |
|
</form> |
|
{{end}} |
|
{{end}} |
|
</div> |
|
{{end}} |
|
<div> |
|
<a href="/user/{{.User.ID}}"> statuses ({{.User.StatusesCount}}) </a> - |
|
<a href="/user/{{.User.ID}}/following"> following ({{.User.FollowingCount}}) </a> - |
|
<a href="/user/{{.User.ID}}/followers"> followers ({{.User.FollowersCount}}) </a> - |
|
<a href="/user/{{.User.ID}}/media"> media </a> |
|
</div> |
|
{{if .IsCurrent}} |
|
<div> |
|
<a href="/user/{{.User.ID}}/bookmarks"> bookmarks </a> |
|
</div> |
|
{{end}} |
|
<div> |
|
<a href="/usersearch/{{.User.ID}}"> search statuses </a> |
|
</div> |
|
</div> |
|
<div class="user-profile-decription"> |
|
{{EmojiFilter .User.Note .User.Emojis}} |
|
</div> |
|
</div> |
|
</div> |
|
|
|
{{if eq .Type ""}} |
|
<div class="page-title"> Statuses </div> |
|
{{range .Statuses}} |
|
{{template "status.tmpl" (WithContext . $.Ctx)}} |
|
{{else}} |
|
<div class="no-data-found">No data found</div> |
|
{{end}} |
|
|
|
{{else if eq .Type "following"}} |
|
<div class="page-title"> Following </div> |
|
{{template "userlist.tmpl" (WithContext .Users $.Ctx)}} |
|
|
|
{{else if eq .Type "followers"}} |
|
<div class="page-title"> Followers </div> |
|
{{template "userlist.tmpl" (WithContext .Users $.Ctx)}} |
|
|
|
{{else if eq .Type "media"}} |
|
<div class="page-title"> Statuses with media </div> |
|
{{range .Statuses}} |
|
{{template "status.tmpl" (WithContext . $.Ctx)}} |
|
{{else}} |
|
<div class="no-data-found">No data found</div> |
|
{{end}} |
|
|
|
{{else if eq .Type "bookmarks"}} |
|
<div class="page-title"> Bookmarks </div> |
|
{{range .Statuses}} |
|
{{template "status.tmpl" (WithContext . $.Ctx)}} |
|
{{else}} |
|
<div class="no-data-found">No data found</div> |
|
{{end}} |
|
{{end}} |
|
|
|
<div class="pagination"> |
|
{{if .NextLink}} |
|
<a href="{{.NextLink}}">[next]</a> |
|
{{end}} |
|
</div> |
|
|
|
{{template "footer.tmpl"}} |
|
{{end}}
|
|
|