diff options
| author | Jules Laplace <jules@okfoc.us> | 2014-09-05 15:54:12 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2014-09-05 15:54:12 -0400 |
| commit | 1082e3be99669671b6c745307131a7cb8d54eabc (patch) | |
| tree | 91897ff420885672a2dc5390ca334b65828737d5 /views/staff/users | |
| parent | 1877aa4b508704634774e47385cf5429f67a4565 (diff) | |
pagination on all queries
Diffstat (limited to 'views/staff/users')
| -rw-r--r-- | views/staff/users/index.ejs | 2 | ||||
| -rw-r--r-- | views/staff/users/media.ejs | 2 | ||||
| -rw-r--r-- | views/staff/users/show.ejs | 17 |
3 files changed, 11 insertions, 10 deletions
diff --git a/views/staff/users/index.ejs b/views/staff/users/index.ejs index 8c56565..f14d666 100644 --- a/views/staff/users/index.ejs +++ b/views/staff/users/index.ejs @@ -11,6 +11,8 @@ <hr> +[[ include ../_pagination ]] [[ include ../_users ]] +[[ include ../_pagination ]] [[ include ../_footer ]] diff --git a/views/staff/users/media.ejs b/views/staff/users/media.ejs index 6ea2668..b13e5fb 100644 --- a/views/staff/users/media.ejs +++ b/views/staff/users/media.ejs @@ -11,6 +11,8 @@ <hr> +[[ include ../_pagination ]] [[ include ../_media ]] +[[ include ../_pagination ]] [[ include ../_footer ]] diff --git a/views/staff/users/show.ejs b/views/staff/users/show.ejs index 127ca8c..8e9b447 100644 --- a/views/staff/users/show.ejs +++ b/views/staff/users/show.ejs @@ -80,17 +80,14 @@ [[- profile.isStaff ? "yes" : "no" ]] </td> </tr> - </tr> - <tr> - <th> - </th> - <td id="actions"> - [[ if (String(user._id) != String(profile._id)) { ]] - <button id="toggle-staff" data-isStaff="[[- !! profile.isStaff ]]">Make Staff</button> - [[ } ]] - </td> - </tr> </table> + + <br><br> + <div id="actions"> + [[ if (String(user._id) != String(profile._id)) { ]] + <button id="toggle-staff" data-isStaff="[[- !! profile.isStaff ]]">Make Staff</button> + [[ } ]] + </div> <h2>Projects</h2> |
