2016-12-07 09:34:09 +00:00
|
|
|
{{template "header.html" . }}
|
2017-05-29 14:52:37 +00:00
|
|
|
|
|
|
|
<div id="profile_left_pane" class="colblock_left" style="max-width: 220px;">
|
|
|
|
<div class="rowitem" style="padding: 0;">
|
|
|
|
<img src="{{.ProfileOwner.Avatar}}" style="max-width: 100%;margin: 0;display: block;" />
|
|
|
|
</div>
|
|
|
|
<div class="rowitem">
|
2016-12-26 04:44:07 +00:00
|
|
|
<span style="font-size: 18px;">{{.ProfileOwner.Name}}</span>{{if .ProfileOwner.Tag}}<span class="username" style="float: right;font-weight: normal;">{{.ProfileOwner.Tag}}</span>{{end}}
|
2016-12-13 02:14:14 +00:00
|
|
|
</div>
|
2016-12-07 09:34:09 +00:00
|
|
|
<div class="rowitem passive">
|
2017-05-29 14:52:37 +00:00
|
|
|
<a class="profile_menu_item">Add Friend</a>
|
|
|
|
</div>
|
2017-06-05 11:57:27 +00:00
|
|
|
{{if (.CurrentUser.Is_Super_Mod) and not (.ProfileOwner.Is_Super_Mod) }}<div class="rowitem passive">
|
|
|
|
{{if .ProfileOwner.Is_Banned }}<a href="/users/unban/{{.ProfileOwner.ID}}?session={{.CurrentUser.Session}}" class="profile_menu_item">Unban</a>
|
|
|
|
{{else}}<a href="/users/ban/{{.ProfileOwner.ID}}?session={{.CurrentUser.Session}}" class="profile_menu_item">Ban</a>{{end}}
|
|
|
|
</div>{{end}}
|
|
|
|
<div class="rowitem passive">
|
2017-05-29 14:52:37 +00:00
|
|
|
<a href="/report/submit/{{.ProfileOwner.ID}}?session={{.CurrentUser.Session}}&type=user" class="profile_menu_item report_item">Report</a>
|
2016-12-07 09:34:09 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-05-29 14:52:37 +00:00
|
|
|
|
|
|
|
<div class="colblock_right" style="width: calc(95% - 210px);">
|
2017-01-07 06:31:04 +00:00
|
|
|
<div class="rowitem rowhead"><a>Comments</a></div>
|
2016-12-07 09:34:09 +00:00
|
|
|
</div>
|
2017-05-29 14:52:37 +00:00
|
|
|
<div id="profile_comments" class="colblock_right" style="overflow: hidden;border-top: none;width:calc(95% - 210px);">{{range .ItemList}}
|
2017-01-26 13:37:50 +00:00
|
|
|
<div class="rowitem passive deletable_block editable_parent simple" style="{{if .Avatar}}background-image: url({{.Avatar}}), url(/static/white-dot.jpg);background-position: 0px {{if le .ContentLines 5}}-1{{end}}0px;background-repeat: no-repeat, repeat-y;background-size: 128px;padding-left: 136px;{{.Css}}{{end}}">
|
2017-05-29 14:52:37 +00:00
|
|
|
<span class="editable_block user_content simple">{{.ContentHtml}}</span><br /><br />
|
|
|
|
<a href="/user/{{.CreatedBy}}" class="real_username username">{{.CreatedByName}}</a>
|
|
|
|
|
|
|
|
{{if $.CurrentUser.Is_Mod}}<a href="/profile/reply/edit/submit/{{.ID}}" class="mod_button" title="Edit Item"><button class="username edit_item edit_label"></button></a>
|
|
|
|
|
|
|
|
<a href="/profile/reply/delete/submit/{{.ID}}" class="mod_button" title="Delete Item"><button class="username delete_item trash_label"></button></a>{{end}}
|
|
|
|
|
|
|
|
<a class="mod_button" href="/report/submit/{{.ID}}?session={{$.CurrentUser.Session}}&type=user-reply"><button class="username report_item flag_label"></button></a>
|
|
|
|
|
2017-03-14 10:57:40 +00:00
|
|
|
{{if .Tag}}<a class="username hide_on_mobile" style="float: right;">{{.Tag}}</a>{{end}}
|
2017-01-08 16:02:19 +00:00
|
|
|
</div>
|
|
|
|
{{end}}</div>
|
2017-05-29 14:52:37 +00:00
|
|
|
|
|
|
|
<div class="colblock_right" style="border-top: none;width: calc(95% - 210px);">
|
2016-12-07 09:34:09 +00:00
|
|
|
{{if not .CurrentUser.Is_Banned}}
|
2017-01-08 16:02:19 +00:00
|
|
|
<form action="/profile/reply/create/" method="post">
|
|
|
|
<input name="uid" value='{{.ProfileOwner.ID}}' type="hidden" />
|
|
|
|
<div class="formrow">
|
|
|
|
<div class="formitem"><textarea name="reply-content" placeholder="Insert reply here"></textarea></div>
|
|
|
|
</div>
|
|
|
|
<div class="formrow">
|
|
|
|
<div class="formitem"><button name="reply-button" class="formbutton">Create Reply</button></div>
|
|
|
|
</div>
|
|
|
|
</form>
|
2016-12-07 09:34:09 +00:00
|
|
|
{{end}}
|
2017-01-08 16:02:19 +00:00
|
|
|
</div>
|
2017-05-29 14:52:37 +00:00
|
|
|
|
|
|
|
{{template "footer.html" . }}
|