diff options
| author | Sam Wilkins <samwilkins333@gmail.com> | 2019-11-23 17:09:13 -0500 |
|---|---|---|
| committer | Sam Wilkins <samwilkins333@gmail.com> | 2019-11-23 17:09:13 -0500 |
| commit | b831be86743e329cce441b3d7ae2aa5321e7fb9c (patch) | |
| tree | 08206d4ff0662507305a8283f30e531a20a5a742 /views/user_activity.pug | |
| parent | 4c9cdc243f5899ce051fe247b2a53520c63a96c7 (diff) | |
improved user activity log
Diffstat (limited to 'views/user_activity.pug')
| -rw-r--r-- | views/user_activity.pug | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/views/user_activity.pug b/views/user_activity.pug new file mode 100644 index 000000000..68e42140d --- /dev/null +++ b/views/user_activity.pug @@ -0,0 +1,19 @@ +extends ./layout + +block content + style + include ./stylesheets/authentication.css + .outermost + .online-container + .partition(id="active-partition") + span.user-type Active Users + .inner-activity(id="active-inner") + ol + each val in active + li= val + .partition(id="inactive-partition") + span.user-type Inactive Users + .inner-activity(id="inactive-inner") + ol + each val in inactive + li= val
\ No newline at end of file |
