mirror of
https://github.com/JonathanHerrewijnen/calibre-web.git
synced 2024-11-11 05:33:57 +00:00
bbf6d9b026
Bugfix for feeds - removed categories related and up - load new books now working - category random now working login page is free of non accessible elements boolean custom column is vivible in UI books with only with certain languages can be shown book shelfs can be deleted from UI Anonymous user view is more resticted Added browse of series in sidebar Dependencys in vendor folder are updated to newer versions (licencs files are now present) Bugfix editing Authors names Made upload on windows working
57 lines
2.4 KiB
HTML
57 lines
2.4 KiB
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
<div class="discover">
|
|
<h2>{{title}}</h2>
|
|
<table class="table table-striped">
|
|
<tr>
|
|
<th>{{_('Nickname')}}</th>
|
|
<th>{{_('Email')}}</th>
|
|
<th>{{_('Kindle')}}</th>
|
|
<th>{{_('DLS')}}</th>
|
|
<th>{{_('Admin')}}</th>
|
|
<th>{{_('Download')}}</th>
|
|
<th>{{_('Upload')}}</th>
|
|
<th>{{_('Edit')}}</th>
|
|
<th>{{_('Passwd')}}</th>
|
|
|
|
</tr>
|
|
{% for user in content %}
|
|
<tr>
|
|
<td><a href="{{url_for('edit_user', user_id=user.id)}}">{{user.nickname}}</a></td>
|
|
<td>{{user.email}}</td>
|
|
<td>{{user.kindle_mail}}</td>
|
|
<td>{{user.downloads.count()}}</td>
|
|
<td>{% if user.role_admin() %}<span class="glyphicon glyphicon-ok"></span>{% else %}<span class="glyphicon glyphicon-remove"></span>{% endif %}</td>
|
|
<td>{% if user.role_download() %}<span class="glyphicon glyphicon-ok"></span>{% else %}<span class="glyphicon glyphicon-remove"></span>{% endif %}</td>
|
|
<td>{% if user.role_upload() %}<span class="glyphicon glyphicon-ok"></span>{% else %}<span class="glyphicon glyphicon-remove"></span>{% endif %}</td>
|
|
<td>{% if user.role_edit() %}<span class="glyphicon glyphicon-ok"></span>{% else %}<span class="glyphicon glyphicon-remove"></span>{% endif %}</td>
|
|
<td>{% if user.role_passwd() %}<span class="glyphicon glyphicon-ok"></span>{% else %}<span class="glyphicon glyphicon-remove"></span>{% endif %}</td>
|
|
|
|
{% endfor %}
|
|
</table>
|
|
<div class="btn btn-default"><a href="{{url_for('new_user')}}">{{_('Add new user')}}</a></div>
|
|
<h2>{{_('SMTP mail settings')}}</h2>
|
|
<table class="table table-striped">
|
|
<tr>
|
|
<th>{{_('SMTP hostname')}}</th>
|
|
<th>{{_('SMTP port')}}</th>
|
|
<th>{{_('SSL')}}</th>
|
|
<th>{{_('SMTP login')}}</th>
|
|
<th>{{_('SMTP password')}}</th>
|
|
<th>{{_('From mail')}}</th>
|
|
</tr>
|
|
<tr>
|
|
<td>{{email.mail_server}}</td>
|
|
<td>{{email.mail_port}}</td>
|
|
<td>{% if email.mail_use_ssl %}<span class="glyphicon glyphicon-ok"></span>{% else %}<span class="glyphicon glyphicon-remove"></span>{% endif %}</td>
|
|
<td>{{email.mail_login}}</td>
|
|
<td>********</td>
|
|
<td>{{email.mail_from}}</td>
|
|
|
|
</table>
|
|
|
|
<div class="btn btn-default"><a href="{{url_for('edit_mailsettings')}}">{{_('Change SMTP settings')}}</a></div>
|
|
|
|
</div>
|
|
{% endblock %}
|