mirror of
https://github.com/janeczku/calibre-web
synced 2024-10-31 15:20:28 +00:00
451 lines
29 KiB
HTML
451 lines
29 KiB
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
<div class="discover">
|
|
<h2>{{title}}</h2>
|
|
<form role="form" method="POST" autocomplete="off">
|
|
<div class="panel-group col-md-10 col-lg-6">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h4 class="panel-title">
|
|
<a class="accordion-toggle" data-toggle="collapse" href="#collapseOne">
|
|
<span class="glyphicon glyphicon-minus"></span>
|
|
{{_('Library Configuration')}}
|
|
</a>
|
|
</h4>
|
|
</div>
|
|
<div id="collapseOne" class="panel-collapse collapse in">
|
|
<div class="panel-body">
|
|
<label for="config_calibre_dir">{{_('Location of Calibre Database')}}</label>
|
|
<div class="form-group required{% if filepicker %} input-group{% endif %}">
|
|
<input type="text" class="form-control" id="config_calibre_dir" name="config_calibre_dir" value="{% if config.config_calibre_dir != None %}{{ config.config_calibre_dir }}{% endif %}" autocomplete="off">
|
|
{% if filepicker %}
|
|
<span class="input-group-btn">
|
|
<button type="button" data-toggle="modal" id="converter_modal_path" data-link="config_calibre_dir" data-filefilter="metadata.db" data-target="#fileModal" id="library_path" class="btn btn-default"><span class="glyphicon glyphicon-folder-open"></span></button>
|
|
</span>
|
|
{% endif %}
|
|
</div>
|
|
{% if not filepicker %}
|
|
<div class="form-group">
|
|
<label id="filepicker-hint">{{_('To activate serverside filepicker start Calibre-Web with -f optionn')}}</label>
|
|
</div>
|
|
{% endif %}
|
|
{% if feature_support['gdrive'] %}
|
|
<div class="form-group required">
|
|
<input type="checkbox" id="config_use_google_drive" name="config_use_google_drive" data-control="gdrive_settings" {% if config.config_use_google_drive %}checked{% endif %} >
|
|
<label for="config_use_google_drive">{{_('Use Google Drive?')}}</label>
|
|
</div>
|
|
<div data-related="gdrive_settings">
|
|
{% if gdriveError %}
|
|
<div class="form-group">
|
|
<label id="gdrive_error">
|
|
{{_('Google Drive config problem')}}: {{ gdriveError }}
|
|
</label>
|
|
</div>
|
|
{% else %}
|
|
{% if show_authenticate_google_drive and g.user.is_authenticated and config.config_use_google_drive %}
|
|
<div class="form-group required">
|
|
<a href="{{ url_for('gdrive.authenticate_google_drive') }}" id="gdrive_auth" class="btn btn-primary">{{_('Authenticate Google Drive')}}</a>
|
|
</div>
|
|
{% else %}
|
|
{% if show_authenticate_google_drive and g.user.is_authenticated and not config.config_use_google_drive %}
|
|
<div >{{_('Please hit save to continue with setup')}}</div>
|
|
{% endif %}
|
|
{% if not g.user.is_authenticated and show_login_button %}
|
|
<div >{{_('Please finish Google Drive setup after login')}}</div>
|
|
{% endif %}
|
|
{% if g.user.is_authenticated %}
|
|
{% if not show_authenticate_google_drive %}
|
|
<div class="form-group required">
|
|
<label for="config_google_drive_folder">{{_('Google Drive Calibre folder')}}</label>
|
|
<select name="config_google_drive_folder" id="config_google_drive_folder" class="form-control">
|
|
{% for gdrivefolder in gdrivefolders %}
|
|
<option value="{{ gdrivefolder.title }}" {% if gdrivefolder.title == config.config_google_drive_folder %}selected{% endif %}>{{ gdrivefolder.title }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
{% if config.config_google_drive_watch_changes_response %}
|
|
<label for="config_google_drive_watch_changes_response">{{_('Metadata Watch Channel ID')}}</label>
|
|
<div class="form-group input-group required">
|
|
<input type="text" class="form-control" name="config_google_drive_watch_changes_response" id="config_google_drive_watch_changes_response" value="{{ config.config_google_drive_watch_changes_response['id'] }} expires on {{ config.config_google_drive_watch_changes_response['expiration'] | strftime }}" autocomplete="off" disabled="">
|
|
<span class="input-group-btn"><a href="{{ url_for('gdrive.revoke_watch_gdrive') }}" id="watch_revoke" class="btn btn-primary">{{_('Revoke')}}</a></span>
|
|
</div>
|
|
{% else %}
|
|
<a href="{{ url_for('gdrive.watch_gdrive') }}" id="enable_gdrive_watch" class="btn btn-primary">Enable watch of metadata.db</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% if show_back_button %}
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h4 class="panel-title">
|
|
<a class="accordion-toggle" data-toggle="collapse" href="#collapsetwo">
|
|
<span class="glyphicon glyphicon-plus"></span>
|
|
{{_('Server Configuration')}}
|
|
</a>
|
|
</h4>
|
|
</div>
|
|
<div id="collapsetwo" class="panel-collapse collapse">
|
|
<div class="panel-body">
|
|
<div class="form-group">
|
|
<label for="config_port">{{_('Server Port')}}</label>
|
|
<input type="number" min="1" max="65535" class="form-control" name="config_port" id="config_port" value="{% if config.config_port != None %}{{ config.config_port }}{% endif %}" autocomplete="off" required>
|
|
</div>
|
|
<label for="config_certfile">{{_('SSL certfile location (leave it empty for non-SSL Servers)')}}</label>
|
|
<div class="form-group input-group">
|
|
<input type="text" class="form-control" id="config_certfile" name="config_certfile" value="{% if config.config_certfile != None %}{{ config.config_certfile }}{% endif %}" autocomplete="off">
|
|
<span class="input-group-btn">
|
|
<button type="button" data-toggle="modal" data-link="config_certfile" data-target="#fileModal" id="certfile_path" class="btn btn-default"><span class="glyphicon glyphicon-folder-open"></span></button>
|
|
</span>
|
|
</div>
|
|
<label for="config_calibre_dir" >{{_('SSL Keyfile location (leave it empty for non-SSL Servers)')}}</label>
|
|
<div class="form-group input-group">
|
|
<input type="text" class="form-control" id="config_keyfile" name="config_keyfile" value="{% if config.config_keyfile != None %}{{ config.config_keyfile }}{% endif %}" autocomplete="off">
|
|
<span class="input-group-btn">
|
|
<button type="button" id="keyfile_path" data-toggle="modal" data-link="config_keyfile" data-target="#fileModal" class="btn btn-default"><span class="glyphicon glyphicon-folder-open"></span></button>
|
|
</span>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="config_updatechannel">{{_('Update Channel')}}</label>
|
|
<select name="config_updatechannel" id="config_updatechannel" class="form-control">
|
|
<option value="0" {% if config.config_updatechannel == 0 %}selected{% endif %}>{{_('Stable')}}</option>
|
|
<option value="2" {% if config.config_updatechannel == 2 %}selected{% endif %}>{{_('Nightly')}}</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h4 class="panel-title">
|
|
<a class="accordion-toggle" data-toggle="collapse" href="#collapsethree">
|
|
<span class="glyphicon glyphicon-plus"></span>
|
|
{{_('Logfile Configuration')}}
|
|
</a>
|
|
</h4>
|
|
</div>
|
|
<div id="collapsethree" class="panel-collapse collapse">
|
|
<div class="panel-body">
|
|
<div class="form-group">
|
|
<label for="config_log_level">{{_('Log Level')}}</label>
|
|
<select name="config_log_level" id="config_log_level" class="form-control">
|
|
<option value="10" {% if config.config_log_level == 10 %}selected{% endif %}>DEBUG</option>
|
|
<option value="20" {% if config.config_log_level == 20 or config.config_log_level == None %}selected{% endif %}>INFO</option>
|
|
<option value="30" {% if config.config_log_level == 30 %}selected{% endif %}>WARNING</option>
|
|
<option value="40" {% if config.config_log_level == 40 %}selected{% endif %}>ERROR</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="config_logfile">{{_('Location and name of logfile (calibre-web.log for no entry)')}}</label>
|
|
<input type="text" class="form-control" name="config_logfile" id="config_logfile" value="{% if config.config_logfile != None %}{{ config.config_logfile }}{% endif %}" autocomplete="off">
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="checkbox" id="config_access_log" name="config_access_log" {% if config.config_access_log %}checked{% endif %}>
|
|
<label for="config_access_log">{{_('Enable Access Log')}}</label>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="config_access_logfile">{{_('Location and name of access logfile (access.log for no entry)')}}</label>
|
|
<input type="text" class="form-control" name="config_access_logfile" id="config_access_logfile" value="{% if config.config_access_logfile != None %}{{ config.config_access_logfile }}{% endif %}" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h4 class="panel-title">
|
|
<a class="accordion-toggle" data-toggle="collapse" href="#collapsefive">
|
|
<span class="glyphicon glyphicon-plus"></span>
|
|
{{_('Feature Configuration')}}
|
|
</a>
|
|
</h4>
|
|
</div>
|
|
<div id="collapsefive" class="panel-collapse collapse">
|
|
<div class="panel-body">
|
|
<div class="form-group">
|
|
<input type="checkbox" id="config_uploading" data-control="upload_settings" name="config_uploading" {% if config.config_uploading %}checked{% endif %}>
|
|
<label for="config_uploading">{{_('Enable Uploads')}}</label>
|
|
</div>
|
|
<div data-related="upload_settings">
|
|
<div class="form-group">
|
|
<label for="config_upload_formats">{{_('Allowed Upload Fileformats')}}</label>
|
|
<input type="text" class="form-control" name="config_upload_formats" id="config_upload_formats" value="{% if config.config_upload_formats != None %}{{ config.config_upload_formats }}{% endif %}" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="checkbox" id="config_anonbrowse" name="config_anonbrowse" {% if config.config_anonbrowse %}checked{% endif %}>
|
|
<label for="config_anonbrowse">{{_('Enable Anonymous Browsing')}}</label>
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="checkbox" id="config_public_reg" data-control="register_settings" name="config_public_reg" {% if config.config_public_reg %}checked{% endif %}>
|
|
<label for="config_public_reg">{{_('Enable Public Registration')}}</label>
|
|
</div>
|
|
<div data-related="register_settings">
|
|
<div class="form-group intend-form">
|
|
<input type="checkbox" id="config_register_email" name="config_register_email" {% if config.config_register_email %}checked{% endif %}>
|
|
<label for="config_register_email">{{_('Use E-Mail as Username')}}</label>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="checkbox" id="config_remote_login" name="config_remote_login" {% if config.config_remote_login %}checked{% endif %}>
|
|
<label for="config_remote_login">{{_('Enable Magic Link Remote Login')}}</label>
|
|
</div>
|
|
{% if feature_support['kobo'] %}
|
|
<div class="form-group">
|
|
<input type="checkbox" id="config_kobo_sync" name="config_kobo_sync" data-control="kobo-settings" {% if config.config_kobo_sync %}checked{% endif %}>
|
|
<label for="config_kobo_sync">{{_('Enable Kobo sync')}}</label>
|
|
</div>
|
|
<div data-related="kobo-settings">
|
|
<div class="form-group" style="margin-left:10px;">
|
|
<input type="checkbox" id="config_kobo_proxy" name="config_kobo_proxy" {% if config.config_kobo_proxy %}checked{% endif %}>
|
|
<label for="config_kobo_proxy">{{_('Proxy unknown requests to Kobo Store')}}</label>
|
|
</div>
|
|
<div class="form-group" style="margin-left:10px;">
|
|
<label for="config_external_port">{{_('Server External Port (for port forwarded API calls)')}}</label>
|
|
<input type="number" min="1" max="65535" class="form-control" name="config_external_port" id="config_external_port" value="{% if config.config_external_port != None %}{{ config.config_external_port }}{% endif %}" autocomplete="off" required>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% if feature_support['goodreads'] %}
|
|
<div class="form-group">
|
|
<input type="checkbox" id="config_use_goodreads" name="config_use_goodreads" data-control="goodreads-settings" {% if config.config_use_goodreads %}checked{% endif %}>
|
|
<label for="config_use_goodreads">{{_('Use Goodreads')}}</label>
|
|
<a href="https://www.goodreads.com/api/keys" target="_blank" style="margin-left: 5px">{{_('Create an API Key')}}</a>
|
|
</div>
|
|
<div data-related="goodreads-settings">
|
|
<div class="form-group">
|
|
<label for="config_goodreads_api_key">{{_('Goodreads API Key')}}</label>
|
|
<input type="text" class="form-control" id="config_goodreads_api_key" name="config_goodreads_api_key" value="{% if config.config_goodreads_api_key != None %}{{ config.config_goodreads_api_key }}{% endif %}" autocomplete="off">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="config_goodreads_api_secret">{{_('Goodreads API Secret')}}</label>
|
|
<input type="text" class="form-control" id="config_goodreads_api_secret" name="config_goodreads_api_secret" value="{% if config.config_goodreads_api_secret != None %}{{ config.config_goodreads_api_secret }}{% endif %}" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
<div class="form-group">
|
|
<input type="checkbox" id="config_allow_reverse_proxy_header_login" name="config_allow_reverse_proxy_header_login" data-control="reverse-proxy-login-settings" {% if config.config_allow_reverse_proxy_header_login %}checked{% endif %}>
|
|
<label for="config_allow_reverse_proxy_header_login">{{_('Allow Reverse Proxy Authentication')}}</label>
|
|
</div>
|
|
<div data-related="reverse-proxy-login-settings">
|
|
<div class="form-group">
|
|
<label for="config_reverse_proxy_login_header_name">{{_('Reverse Proxy Header Name')}}</label>
|
|
<input type="text" class="form-control" id="config_reverse_proxy_login_header_name" name="config_reverse_proxy_login_header_name" value="{% if config.config_reverse_proxy_login_header_name != None %}{{ config.config_reverse_proxy_login_header_name }}{% endif %}" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
{% if not config.config_is_initial %}
|
|
{% if feature_support['ldap'] or feature_support['oauth'] %}
|
|
<div class="form-group">
|
|
<label for="config_login_type">{{_('Login type')}}</label>
|
|
<select name="config_login_type" id="config_login_type" class="form-control" data-control="login-settings">
|
|
<option value="0" {% if config.config_login_type == 0 %}selected{% endif %}>{{_('Use Standard Authentication')}}</option>
|
|
{% if feature_support['ldap'] %}
|
|
<option value="1" {% if config.config_login_type == 1 %}selected{% endif %}>{{_('Use LDAP Authentication')}}</option>
|
|
{% endif %}
|
|
{% if feature_support['oauth'] %}
|
|
<option value="2" {% if config.config_login_type == 2 %}selected{% endif %}>{{_('Use OAuth')}}</option>
|
|
{% endif %}
|
|
</select>
|
|
</div>
|
|
{% if feature_support['ldap'] %}
|
|
<div data-related="login-settings-1">
|
|
<div class="form-group">
|
|
<label for="config_ldap_provider_url">{{_('LDAP Server Host Name or IP Address')}}</label>
|
|
<input type="text" class="form-control" id="config_ldap_provider_url" name="config_ldap_provider_url" value="{% if config.config_ldap_provider_url != None %}{{ config.config_ldap_provider_url }}{% endif %}" autocomplete="off">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="config_ldap_port">{{_('LDAP Server Port')}}</label>
|
|
<input type="number" min="1" max="65535" class="form-control" id="config_ldap_port" name="config_ldap_port" value="{% if config.config_ldap_port != None %}{{ config.config_ldap_port }}{% endif %}" autocomplete="off" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="config_ldap_encryption">{{_('LDAP Encryption')}}</label>
|
|
<select name="config_ldap_encryption" id="config_ldap_encryption" class="form-control" data-controlall="ldap-cert-settings">
|
|
<option value="0" {% if config.config_ldap_encryption == 0 %}selected{% endif %}>{{ _('None') }}</option>
|
|
<option value="1" {% if config.config_ldap_encryption == 1 %}selected{% endif %}>{{ _('TLS') }}</option>
|
|
<option value="2" {% if config.config_ldap_encryption == 2 %}selected{% endif %}>{{ _('SSL') }}</option>
|
|
</select>
|
|
</div>
|
|
<div data-related="ldap-cert-settings">
|
|
<label for="config_ldap_cacert_path" >{{_('LDAP CACertificate Path (Only needed for Client Certificate Authentication)')}}</label>
|
|
<div class="form-group input-group">
|
|
<input type="text" class="form-control" id="config_ldap_cacert_path" name="config_ldap_cacert_path" value="{% if config.config_ldap_cacert_path != None %}{{ config.config_ldap_cacert_path }}{% endif %}" autocomplete="off">
|
|
<span class="input-group-btn">
|
|
<button type="button" id="library_path" data-toggle="modal" data-link="config_ldap_cacert_path" data-target="#fileModal" class="btn btn-default"><span class="glyphicon glyphicon-folder-open"></span></button>
|
|
</span>
|
|
</div>
|
|
<label for="config_ldap_cert_path">{{_('LDAP Certificate Path (Only needed for Client Certificate Authentication)')}}</label>
|
|
<div class="form-group input-group">
|
|
<input type="text" class="form-control" id="config_ldap_cert_path" name="config_ldap_cert_path" value="{% if config.config_ldap_cert_path != None %}{{ config.config_ldap_cert_path }}{% endif %}" autocomplete="off">
|
|
<span class="input-group-btn">
|
|
<button type="button" id="library_path" data-toggle="modal" data-link="config_ldap_cert_path" data-target="#fileModal" class="btn btn-default"><span class="glyphicon glyphicon-folder-open"></span></button>
|
|
</span>
|
|
</div>
|
|
<label for="config_ldap_key_path">{{_('LDAP Keyfile Path (Only needed for Client Certificate Authentication)')}}</label>
|
|
<div class="form-group input-group">
|
|
<input type="text" class="form-control" id="config_ldap_key_path" name="config_ldap_key_path" value="{% if config.config_ldap_key_path != None %}{{ config.config_ldap_key_path }}{% endif %}" autocomplete="off">
|
|
<span class="input-group-btn">
|
|
<button type="button" id="library_path" data-toggle="modal" data-link="config_ldap_key_path" data-target="#fileModal" class="btn btn-default"><span class="glyphicon glyphicon-folder-open"></span></button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="config_ldap_authentication">{{_('LDAP Authentication')}}</label>
|
|
<select name="config_ldap_authentication" id="config_ldap_authentication" class="form-control" data-control="ldap-auth-password" data-controlall="ldap-auth-settings">
|
|
<option value="0" {% if config.config_ldap_authentication == 0 %}selected{% endif %}>{{ _('Anonymous') }}</option>
|
|
<option value="1" {% if config.config_ldap_authentication == 1 %}selected{% endif %}>{{ _('Unauthenticated') }}</option>
|
|
<option value="2" {% if config.config_ldap_authentication == 2 %}selected{% endif %}>{{ _('Simple') }}</option>
|
|
</select>
|
|
</div>
|
|
<div data-related="ldap-auth-settings">
|
|
<div class="form-group">
|
|
<label for="config_ldap_serv_username">{{_('LDAP Administrator Username')}}</label>
|
|
<input type="text" class="form-control" id="config_ldap_serv_username" name="config_ldap_serv_username" value="{% if config.config_ldap_serv_username != None %}{{ config.config_ldap_serv_username }}{% endif %}" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
<div data-related="ldap-auth-password-2">
|
|
<div class="form-group">
|
|
<label for="config_ldap_serv_password">{{_('LDAP Administrator Password')}}</label>
|
|
<input type="password" class="form-control" id="config_ldap_serv_password" name="config_ldap_serv_password" value="" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="config_ldap_dn">{{_('LDAP Distinguished Name (DN)')}}</label>
|
|
<input type="text" class="form-control" id="config_ldap_dn" name="config_ldap_dn" value="{% if config.config_ldap_dn != None %}{{ config.config_ldap_dn }}{% endif %}" autocomplete="off">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="config_ldap_user_object">{{_('LDAP User Object Filter')}}</label>
|
|
<input type="text" class="form-control" id="config_ldap_user_object" name="config_ldap_user_object" value="{% if config.config_ldap_user_object != None %}{{ config.config_ldap_user_object }}{% endif %}" autocomplete="off">
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="checkbox" id="config_ldap_openldap" name="config_ldap_openldap" {% if config.config_ldap_openldap %}checked{% endif %}>
|
|
<label for="config_ldap_openldap">{{_('LDAP Server is OpenLDAP?')}}</label>
|
|
</div>
|
|
<h4 class="text-center">{{_('Following Settings are Needed For User Import')}}</h4>
|
|
<div class="form-group">
|
|
<label for="config_ldap_group_object_filter">{{_('LDAP Group Object Filter')}}</label>
|
|
<input type="text" class="form-control" id="config_ldap_group_object_filter" name="config_ldap_group_object_filter" value="{% if config.config_ldap_group_object_filter != None %}{{ config.config_ldap_group_object_filter }}{% endif %}" autocomplete="off">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="config_ldap_group_name">{{_('LDAP Group Name')}}</label>
|
|
<input type="text" class="form-control" id="config_ldap_group_name" name="config_ldap_group_name" value="{% if config.config_ldap_group_name != None %}{{ config.config_ldap_group_name }}{% endif %}" autocomplete="off">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="config_ldap_group_members_field">{{_('LDAP Group Members Field')}}</label>
|
|
<input type="text" class="form-control" id="config_ldap_group_members_field" name="config_ldap_group_members_field" value="{% if config.config_ldap_group_members_field != None %}{{ config.config_ldap_group_members_field }}{% endif %}" autocomplete="off">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="ldap_import_user_filter">{{_('LDAP Member User Filter Detection')}}</label>
|
|
<select name="ldap_import_user_filter" id="ldap_import_user_filter" class="form-control" data-control="ldap_member_user_object">
|
|
<option value="0" {% if config.config_ldap_member_user_object == "" %}selected{% endif %}>{{ _('Autodetect') }}</option>
|
|
<option value="1" {% if config.config_ldap_member_user_object %}selected{% endif %}>{{ _('Custom Filter') }}</option>
|
|
</select>
|
|
</div>
|
|
<div data-related="ldap_member_user_object-1">
|
|
<div class="form-group">
|
|
<label for="config_ldap_member_user_object">{{_('LDAP Member User Filter')}}</label>
|
|
<input type="text" class="form-control" id="config_ldap_member_user_object" name="config_ldap_member_user_object" value="{% if config.config_ldap_member_user_object != None %}{{ config.config_ldap_member_user_object }}{% endif %}" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
{% endif %}
|
|
{% if feature_support['oauth'] %}
|
|
<div data-related="login-settings-2">
|
|
{% for prov in provider %}
|
|
<div class="form-group">
|
|
<a href="{{prov['obtain_link']}}" target="_blank">{{_('Obtain %(provider)s OAuth Credential', provider=prov['provider_name'])}}</a>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="config_{{ prov['id'] }}_oauth_client_id">{{_('%(provider)s OAuth Client Id', provider=prov['provider_name'])}}</label>
|
|
<input type="text" class="form-control" id="config_{{ prov['id'] }}_oauth_client_id" name="config_{{ prov['id'] }}_oauth_client_id" value="{% if prov['oauth_client_id']%}{{ prov['oauth_client_id'] }}{% endif %}" autocomplete="off">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="config_{{ prov['id'] }}_oauth_client_secret">{{_('%(provider)s OAuth Client Secret', provider=prov['provider_name'])}}</label>
|
|
<input type="text" class="form-control" id="config_{{ prov['id'] }}_oauth_client_secret" name="config_{{ prov['id'] }}_oauth_client_secret" value="{% if prov['oauth_client_secret']%}{{ prov['oauth_client_secret'] }}{% endif %}" autocomplete="off">
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h4 class="panel-title">
|
|
<a class="accordion-toggle" data-toggle="collapse" href="#collapseeight">
|
|
<span class="glyphicon glyphicon-plus"></span>
|
|
{{_('External binaries')}}
|
|
</a>
|
|
</h4>
|
|
</div>
|
|
<div id="collapseeight" class="panel-collapse collapse">
|
|
<div class="panel-body">
|
|
<label for="config_converterpath">{{_('Path to Calibre E-Book Converter')}}</label>
|
|
<div class="form-group input-group">
|
|
<input type="text" class="form-control" id="config_converterpath" name="config_converterpath" value="{% if config.config_converterpath != None %}{{ config.config_converterpath }}{% endif %}" autocomplete="off">
|
|
<span class="input-group-btn">
|
|
<button type="button" data-toggle="modal" id="converter_modal_path" data-link="config_converterpath" data-target="#fileModal" class="btn btn-default"><span class="glyphicon glyphicon-folder-open"></span></button>
|
|
</span>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="config_calibre">{{_('Calibre E-Book Converter Settings')}}</label>
|
|
<input type="text" class="form-control" id="config_calibre" name="config_calibre" value="{% if config.config_calibre != None %}{{ config.config_calibre }}{% endif %}" autocomplete="off">
|
|
</div>
|
|
<label for="config_kepubifypath">{{_('Path to Kepubify E-Book Converter')}}</label>
|
|
<div class="form-group input-group">
|
|
<input type="text" class="form-control" id="config_kepubifypath" name="config_kepubifypath" value="{% if config.config_kepubifypath != None %}{{ config.config_kepubifypath }}{% endif %}" autocomplete="off">
|
|
<span class="input-group-btn">
|
|
<button type="button" id="kepubify_path" data-toggle="modal" data-link="config_kepubifypath" data-target="#fileModal" class="btn btn-default"><span class="glyphicon glyphicon-folder-open"></span></button>
|
|
</span>
|
|
</div>
|
|
{% if feature_support['rar'] %}
|
|
<label for="config_rarfile_location">{{_('Location of Unrar binary')}}</label>
|
|
<div class="form-group input-group">
|
|
<input type="text" class="form-control" id="config_rarfile_location" name="config_rarfile_location" value="{% if config.config_rarfile_location != None %}{{ config.config_rarfile_location }}{% endif %}" autocomplete="off">
|
|
<span class="input-group-btn">
|
|
<button type="button" id="unrar_path" data-toggle="modal" data-link="config_rarfile_location" data-target="#fileModal" class="btn btn-default"><span class="glyphicon glyphicon-folder-open"></span></button>
|
|
</span>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
<div class="col-sm-12">
|
|
{% if not show_login_button %}
|
|
<button type="submit" name="submit" class="btn btn-default">{{_('Save')}}</button>
|
|
{% endif %}
|
|
{% if show_back_button %}
|
|
<a href="{{ url_for('admin.admin') }}" class="btn btn-default">{{_('Cancel')}}</a>
|
|
{% endif %}
|
|
{% if show_login_button %}
|
|
<a href="{{ url_for('web.login') }}" name="login" class="btn btn-default">{{_('Login')}}</a>
|
|
{% endif %}
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|
|
{% block modal %}
|
|
{{ filechooser_modal() }}
|
|
{% endblock %}
|
|
{% block js %}
|
|
<script type="text/javascript">
|
|
$(document).on('change', '#config_use_google_drive', function() {
|
|
$('#config_google_drive_folder').prop('required', $(this).prop('checked'));
|
|
});
|
|
$('.collapse').on('shown.bs.collapse', function(){
|
|
$(this).parent().find(".glyphicon-plus").removeClass("glyphicon-plus").addClass("glyphicon-minus");
|
|
}).on('hidden.bs.collapse', function(){
|
|
$(this).parent().find(".glyphicon-minus").removeClass("glyphicon-minus").addClass("glyphicon-plus");
|
|
});
|
|
</script>
|
|
{% endblock %}
|