62 lignes
2,7 Kio
HTML
62 lignes
2,7 Kio
HTML
{{ block profile_menu(route="profile") }}
|
|
<div class="profile-sidebar">
|
|
<!-- SIDEBAR USERPIC -->
|
|
<div class="profile-userpic">
|
|
<img src="{{ getAvatar(UserProfile.MD5, 130) }}" alt="{{ UserProfile.Username }}"/>
|
|
</div>
|
|
<!-- END SIDEBAR USERPIC -->
|
|
<!-- SIDEBAR USER TITLE -->
|
|
<div class="profile-usertitle">
|
|
<p class="profile-usertitle-name">
|
|
{{ UserProfile.Username}}
|
|
</p>
|
|
<p class="profile-usertitle-job">
|
|
{{T(UserProfile.GetRole())}}
|
|
</p>
|
|
<p class="profile-usertitle-uploadcount">{{T("followers")}}: <b>{{len(UserProfile.Followers)}}</b><br/>{{ T("torrents_uploaded") }}:<b>{{ NbTorrents[0] }}</b><br>{{T("size")}}: <b>{{fileSize(NbTorrents[1], T, false)}}</b></p>
|
|
</div>
|
|
<!-- END SIDEBAR USER TITLE -->
|
|
<!-- SIDEBAR BUTTONS -->
|
|
<div class="profile-usermenu">
|
|
{{if UserProfile.ID > 0 && !User.CurrentUserIdentical(UserProfile.ID) }}
|
|
{{if User.ID > 0 }}
|
|
{{if !User.IsFollower(UserProfile.ID)}}
|
|
<a class="form-input" href="/user/{{UserProfile.ID}}/{{UserProfile.Username}}/follow" class="form-input btn-green">{{ T("follow")}}</a>
|
|
{{else}}
|
|
<a class="form-input" href="/user/{{UserProfile.ID}}/{{UserProfile.Username}}/follow" class="form-input btn-orange">{{ T("unfollow")}}</a>
|
|
{{end}}
|
|
{{else}}
|
|
<a class="form-input" href="/login?redirectTo=/user/{{UserProfile.ID}}/{{UserProfile.Username}}/follow">{{T("follow")}}</a>
|
|
{{end}}
|
|
{{end}}
|
|
{{ if User.ID > 0 && (User.CurrentUserIdentical(UserProfile.ID) || User.CurrentOrAdmin(UserProfile.ID)) }}
|
|
<a class="form-input btn-green" href="/user/{{ UserProfile.ID }}/{{ UserProfile.Username }}">
|
|
{{ else }}
|
|
<a class="form-input btn-green" href="/search?userID={{ UserProfile.ID }}">
|
|
{{end}}
|
|
<div class="icon-floppy"></div>{{ T("torrents")}}
|
|
</a>
|
|
<a class="form-input btn-orange" href="/feed?userID={{ UserProfile.ID }}">
|
|
<div class="icon-rss-squared"></div>RSS
|
|
</a>
|
|
{{if User.ID > 0 }}
|
|
{{ if User.CurrentUserIdentical(UserProfile.ID) }}
|
|
<a class="form-input" href="/notifications">{{ T("my_notifications")}}</a>
|
|
{{end}}
|
|
{{if UserProfile.ID > 0 && User.CurrentOrAdmin(UserProfile.ID) }}
|
|
<a class="form-input" href="/user/{{UserProfile.ID}}/{{UserProfile.Username}}/edit">
|
|
{{ T("settings")}}
|
|
</a>
|
|
{{end}}
|
|
{{end}}
|
|
</div>
|
|
{{ if User.ID != UserProfile.ID }}
|
|
<div class="user-search">
|
|
<form role="search" action="/user/{{UserProfile.ID}}/{{UserProfile.Username}}/search" id="header-form" method="get">
|
|
<input class="form-input" name="q" type="text" placeholder="{{T("search_from_user")}}">
|
|
<button type="submit" class="form-input icon-search"></button>
|
|
</form>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|