25074b58b2
We now have an Advanced Forum Permissions Editor providing more granular control over permissions. Tweaked the button CSS and some other bits and pieces. Added a details section to the View Count Graph. Renamed a few template files for the sake of consistency and for an upcoming refactor. Unknown user agents are now logged in debug mode. Added GetCopy() to the forum permissions store. Fixed a crash bug in the forum deletion action. Refactored the permissions list in the group permissions editor.
23 lines
854 B
HTML
23 lines
854 B
HTML
{{template "header.html" . }}
|
|
<div class="colstack account account_emails">
|
|
{{template "account_menu.html" . }}
|
|
<main class="colstack_right">
|
|
<div class="colstack_item colstack_head rowhead">
|
|
<div class="rowitem"><h1>Emails</h1></div>
|
|
</div>
|
|
<div class="colstack_item rowlist">
|
|
<!-- TODO: Do we need this inline CSS? -->
|
|
{{range .ItemList}}
|
|
<div class="rowitem" style="font-weight: normal;">
|
|
<a style="text-transform: none;">{{.Email}}</a>
|
|
<span style="float: right" class="to_right">
|
|
<span class="username">{{if .Primary}}Primary{{else}}Secondary{{end}}</span>
|
|
{{if .Validated}}<span class="username" style="color: green;">Verified</span>{{else}}<a class="username" style="color: crimson;">Resend Verification Email</a>{{end}}
|
|
</span>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</main>
|
|
</div>
|
|
{{template "footer.html" . }}
|