mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2025-06-15 18:40:40 +00:00
make is_administrator a property, add back db events
This commit is contained in:
@ -120,7 +120,7 @@
|
||||
{% block modals %}
|
||||
{{ super() }}
|
||||
|
||||
{% if current_user == corpus.user or current_user.is_administrator() %}
|
||||
{% if current_user == corpus.user or current_user.is_administrator %}
|
||||
<div class="modal" id="publishing-modal">
|
||||
<div class="modal-content">
|
||||
<h4>Change your Corpus publishing status</h4>
|
||||
@ -247,7 +247,7 @@
|
||||
});
|
||||
{% endif %}
|
||||
|
||||
{% if current_user == corpus.user or current_user.is_administrator() %}
|
||||
{% if current_user == corpus.user or current_user.is_administrator %}
|
||||
// #region Publishing
|
||||
let publishingModalIsPublicSwitchElement = document.querySelector('#publishing-modal-is-public-switch');
|
||||
publishingModalIsPublicSwitchElement.addEventListener('change', (event) => {
|
||||
|
Reference in New Issue
Block a user