diff options
| author | 8cy <[email protected]> | 2020-05-16 06:34:54 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-05-16 06:34:54 -0700 |
| commit | 5ad3fa1a6a07609e8c26042b1121f1d03a972e15 (patch) | |
| tree | b5d244d2f8ca8701c8c8046bc35be3df5874db22 /views/profile.ejs | |
| parent | big boi changes (diff) | |
| download | slog-master.tar.xz slog-master.zip | |
also add admin panel to profile
Diffstat (limited to 'views/profile.ejs')
| -rw-r--r-- | views/profile.ejs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/views/profile.ejs b/views/profile.ejs index 3d3e214..0223c7b 100644 --- a/views/profile.ejs +++ b/views/profile.ejs @@ -83,6 +83,9 @@ <li class="nav-item"> <a class="nav-link" href="/">Home</a> </li> + <li class="nav-item"> + <a href="/marketplace" class="nav-link">Marketplace Beta</a> + </li> <!--<li class="nav-item"> <a class="nav-link" href="/discord/bots/uwufier/about/">About</a> </li>--> @@ -135,6 +138,28 @@ </div> </div> + <% if (name === 'sin') { %> + <div class="newest hideme" style="position: absolute; top: 15px; left: 15px;"> + <!-- <div class="newest hideme" style="position: fixed; top: 5%; left: 5%;"> --> + <table class="table table-striped"> + <thead> + <tr> + <th id="white-txt">Users</th> + <th id="white-txt">Entries</th> + <th id="white-txt">Uptime</th> + </tr> + </thead> + <tbody> + <tr> + <td id="white-txt" class="highlightable"><%= UserCount %></td> + <td id="white-txt" class="highlightable"><%= EntryCount %></td> + <td id="white-txt" class="highlightable"><%= dateString %></td> + </tr> + </tbody> + </table> + </div> + <% } %> + <footer class="hideme"> <link rel="stylesheet" type="text/css" href="//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" /> |