diff options
| author | bob <bcz@cs.brown.edu> | 2019-12-02 13:22:02 -0500 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-12-02 13:22:02 -0500 |
| commit | 1ef06e189a352e5472ee267d44d4b3c96042f03c (patch) | |
| tree | eefed629be388e83dc71a7b3c574326fc0343f06 /views/user_activity.pug | |
| parent | 1280c005829cf49fd106fd872afcf4ed6593a2f6 (diff) | |
| parent | 0595f93dde717b7b6990e9a81c5b43a73a3808d5 (diff) | |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web
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 |
