Fix viewing Publisher settings for other users
Fix Visiblilty of read/unread category
This commit is contained in:
parent
9128615f48
commit
e8ce88095e
|
@ -25,7 +25,7 @@ import signal
|
||||||
import web
|
import web
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from gevent.piwsgi import WSGIServer
|
from gevent.pywsgi import WSGIServer
|
||||||
from gevent.pool import Pool
|
from gevent.pool import Pool
|
||||||
from gevent import __version__ as geventVersion
|
from gevent import __version__ as geventVersion
|
||||||
gevent_present = True
|
gevent_present = True
|
||||||
|
|
|
@ -85,10 +85,12 @@
|
||||||
<input type="checkbox" name="show_publisher" id="show_publisher" {% if content.show_publisher() %}checked{% endif %}>
|
<input type="checkbox" name="show_publisher" id="show_publisher" {% if content.show_publisher() %}checked{% endif %}>
|
||||||
<label for="show_publisher">{{_('Show publisher selection')}}</label>
|
<label for="show_publisher">{{_('Show publisher selection')}}</label>
|
||||||
</div>
|
</div>
|
||||||
|
{% if not content.role_anonymous() %}
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<input type="checkbox" name="show_read_and_unread" id="show_read_and_unread" {% if content.show_read_and_unread() %}checked{% endif %}>
|
<input type="checkbox" name="show_read_and_unread" id="show_read_and_unread" {% if content.show_read_and_unread() %}checked{% endif %}>
|
||||||
<label for="show_read_and_unread">{{_('Show read and unread')}}</label>
|
<label for="show_read_and_unread">{{_('Show read and unread')}}</label>
|
||||||
</div>
|
</div>
|
||||||
|
{% endif %}
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<input type="checkbox" name="show_detail_random" id="show_detail_random" {% if content.show_detail_random() %}checked{% endif %}>
|
<input type="checkbox" name="show_detail_random" id="show_detail_random" {% if content.show_detail_random() %}checked{% endif %}>
|
||||||
<label for="show_detail_random">{{_('Show random books in detail view')}}</label>
|
<label for="show_detail_random">{{_('Show random books in detail view')}}</label>
|
||||||
|
|
|
@ -3280,6 +3280,11 @@ def edit_user(user_id):
|
||||||
elif "show_sorted" not in to_save and content.show_sorted():
|
elif "show_sorted" not in to_save and content.show_sorted():
|
||||||
content.sidebar_view -= ub.SIDEBAR_SORTED
|
content.sidebar_view -= ub.SIDEBAR_SORTED
|
||||||
|
|
||||||
|
if "show_publisher" in to_save and not content.show_publisher():
|
||||||
|
content.sidebar_view += ub.SIDEBAR_PUBLISHER
|
||||||
|
elif "show_publisher" not in to_save and content.show_publisher():
|
||||||
|
content.sidebar_view -= ub.SIDEBAR_PUBLISHER
|
||||||
|
|
||||||
if "show_hot" in to_save and not content.show_hot_books():
|
if "show_hot" in to_save and not content.show_hot_books():
|
||||||
content.sidebar_view += ub.SIDEBAR_HOT
|
content.sidebar_view += ub.SIDEBAR_HOT
|
||||||
elif "show_hot" not in to_save and content.show_hot_books():
|
elif "show_hot" not in to_save and content.show_hot_books():
|
||||||
|
|
Loading…
Reference in New Issue
Block a user