80ab45d81e
* Fixing user profile page * Modified css rule word-break to break-word * Modified torrents table in user page to look like home listing * Made the button reset api look like a button according to actual design * Modified user menu to have the same spacing accross templates * User menu is in another template file loaded dynamically * Fixing the access to userprofile variable * Menu needs to access the user profile with $.UserProfile * User Notification template variable removed, instead using user profile variable * Reverting back theme flickering fix
14 lignes
396 o
HTML
14 lignes
396 o
HTML
{{define "title"}}{{ call $.T "profile_edit_page" .User.Username }}{{end}}
|
||
{{define "contclass"}}cont-view{{end}}
|
||
{{define "content"}}
|
||
{{with .User }}
|
||
<div class="profile-main">
|
||
<div class="box profile-panel">
|
||
{{ block "profile_menu" $ }}{{end}}
|
||
</div>
|
||
{{end}}
|
||
<div class="profile-content box">
|
||
{{ block "profile_notifications_content" . }}{{end}}
|
||
</div>
|
||
</div>
|
||
{{end}}
|