mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
b532833466
[views] admin: persist the navigation between tabs into the URL GitOrigin-RevId: 202793b9d0b17934bb952e0283228603e036dbc9
78 lines
3.2 KiB
Text
78 lines
3.2 KiB
Text
extends ../layout
|
|
|
|
block content
|
|
.content.content-alt
|
|
.container
|
|
.row
|
|
.col-xs-12
|
|
.card
|
|
.page-header
|
|
h1 Admin Panel
|
|
tabset(bookmarkable-tabset ng-cloak)
|
|
tab(heading="System Messages" bookmarkable-tab="system-messages")
|
|
each message in systemMessages
|
|
.alert.alert-info.row-spaced(ng-non-bindable) #{message.content}
|
|
hr
|
|
form(method='post', action='/admin/messages')
|
|
input(name="_csrf", type="hidden", value=csrfToken)
|
|
.form-group
|
|
label(for="content")
|
|
input.form-control(name="content", type="text", placeholder="Message…", required)
|
|
button.btn.btn-primary(type="submit") Post Message
|
|
hr
|
|
form(method='post', action='/admin/messages/clear')
|
|
input(name="_csrf", type="hidden", value=csrfToken)
|
|
button.btn.btn-danger(type="submit") Clear all messages
|
|
|
|
|
|
tab(heading="Open Sockets" bookmarkable-tab="open-sockets")
|
|
.row-spaced
|
|
ul
|
|
each agents, url in openSockets
|
|
li(ng-non-bindable) #{url} - total : #{agents.length}
|
|
ul
|
|
each agent in agents
|
|
li(ng-non-bindable) #{agent}
|
|
|
|
tab(heading="Open/Close Editor" bookmarkable-tab="open-close-editor")
|
|
if hasFeature('saas')
|
|
| The "Open/Close Editor" feature is not available in SAAS.
|
|
else
|
|
.row-spaced
|
|
form(method='post',action='/admin/closeEditor')
|
|
input(name="_csrf", type="hidden", value=csrfToken)
|
|
button.btn.btn-danger(type="submit") Close Editor
|
|
p.small Will stop anyone opening the editor. Will NOT disconnect already connected users.
|
|
|
|
.row-spaced
|
|
form(method='post',action='/admin/disconnectAllUsers')
|
|
input(name="_csrf", type="hidden", value=csrfToken)
|
|
button.btn.btn-danger(type="submit") Disconnect all users
|
|
p.small Will force disconnect all users with the editor open. Make sure to close the editor first to avoid them reconnecting.
|
|
|
|
.row-spaced
|
|
form(method='post',action='/admin/openEditor')
|
|
input(name="_csrf", type="hidden", value=csrfToken)
|
|
button.btn.btn-danger(type="submit") Reopen Editor
|
|
p.small Will reopen the editor after closing.
|
|
|
|
tab(heading="TPDS/Dropbox Management" bookmarkable-tab="tpds")
|
|
h3 Flush project to TPDS
|
|
.row
|
|
form.col-xs-6(method='post',action='/admin/flushProjectToTpds')
|
|
input(name="_csrf", type="hidden", value=csrfToken)
|
|
.form-group
|
|
label(for='project_id') project_id
|
|
input.form-control(type='text', name='project_id', placeholder='project_id', required)
|
|
.form-group
|
|
button.btn-primary.btn(type='submit') Flush
|
|
hr
|
|
h3 Poll Dropbox for user
|
|
.row
|
|
form.col-xs-6(method='post',action='/admin/pollDropboxForUser')
|
|
input(name="_csrf", type="hidden", value=csrfToken)
|
|
.form-group
|
|
label(for='user_id') user_id
|
|
input.form-control(type='text', name='user_id', placeholder='user_id', required)
|
|
.form-group
|
|
button.btn-primary.btn(type='submit') Poll
|