91f70d2a4a
Added basic support for server sync. Re-added a few missing defers. Renamed TO-DO to TODO across the entire codebase. Renamed StaticForumStore to MemoryForumStore. The ForumStore is now built on a sync.Map with a view slice for generating /forums rather than a slice. Renamed many more functions and variables to satisfy the linter. increase_post_user_stats() and decrease_post_user_stats() are now methods on the User struct. We also fix a bug where they take the moderator's score rather than the target user's into account when recalculating their level after a post / topic is deleted. Transitioned the topic list to CSS Grid for Tempra Simple, with a float fallback. Cosmo and Cosmo Conflux are now hidden from the theme list. Fixed more data races. Added more debug data to the template compiler logs.
16 lines
987 B
HTML
16 lines
987 B
HTML
<nav class="colstack_left">
|
|
<div class="colstack_item colstack_head rowhead">
|
|
<div class="rowitem"><h1>My Account</h1></div>
|
|
</div>
|
|
<div class="colstack_item rowmenu">
|
|
<div class="rowitem passive"><a href="/user/edit/avatar/">Avatar</a></div>
|
|
<div class="rowitem passive"><a href="/user/edit/username/">Username</a></div>
|
|
<div class="rowitem passive"><a href="/user/edit/critical/">Password</a></div>
|
|
<div class="rowitem passive"><a href="/user/edit/email/">Email</a></div>
|
|
<div class="rowitem passive"><a href="/user/edit/notifications">Notifications</a></div>
|
|
{{/** TODO: Add an alerts page with pagination to go through alerts which either don't fit in the alerts drop-down or which have already been dismissed. Bear in mind though that dismissed alerts older than two weeks might be purged to save space and to speed up the database **/}}
|
|
<div class="rowitem passive"><a>Coming Soon</a></div>
|
|
<div class="rowitem passive"><a>Coming Soon</a></div>
|
|
</div>
|
|
</nav>
|