mirror of
https://github.com/janeczku/calibre-web
synced 2024-10-31 15:20:28 +00:00
70 lines
3.0 KiB
HTML
70 lines
3.0 KiB
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
<div class="discover">
|
|
<h1>{{title}}</h1>
|
|
<form role="form" method="POST" autocomplete="off">
|
|
{% if g.user and g.user.role_admin() and new_user %}
|
|
<div class="form-group required">
|
|
<label for="nickname">Username</label>
|
|
<input type="text" class="form-control" name="nickname" id="nickname" value="{{ content.nickname if content.nickname != None }}" autocomplete="off">
|
|
</div>
|
|
{% endif %}
|
|
<div class="form-group">
|
|
<label for="email">Email address</label>
|
|
<input type="email" class="form-control" name="email" id="email" value="{{ content.email if content.email != None }}" autocomplete="off" required>
|
|
</div>
|
|
{% if g.user and g.user.role_passwd() or g.user.role_admin()%}
|
|
<div class="form-group">
|
|
<label for="password">Password</label>
|
|
<input type="password" class="form-control" name="password" id="password" value="" autocomplete="off">
|
|
</div>
|
|
{% endif %}
|
|
<div class="form-group">
|
|
<label for="kindle_mail">Kindle E-Mail</label>
|
|
<input type="text" class="form-control" name="kindle_mail" id="kindle_mail" value="{{ content.kindle_mail if content.kindle_mail != None }}">
|
|
</div>
|
|
{% if g.user and g.user.role_admin() and not profile %}
|
|
<div class="form-group">
|
|
<label for="admin_role">Admin user</label>
|
|
<input type="checkbox" name="admin_role" id="admin_role" {% if content.role_admin() %}checked{% endif %}>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="download_role">Allow Downloads</label>
|
|
<input type="checkbox" name="download_role" id="download_role" {% if content.role_download() %}checked{% endif %}>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="upload_role">Allow Uploads</label>
|
|
<input type="checkbox" name="upload_role" id="upload_role" {% if content.role_upload() %}checked{% endif %}>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="edit_role">Allow Edit</label>
|
|
<input type="checkbox" name="edit_role" id="edit_role" {% if content.role_edit() %}checked{% endif %}>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="passwd_role">Allow Changing Password</label>
|
|
<input type="checkbox" name="passwd_role" id="passwd_role" {% if content.role_passwd() %}checked{% endif %}>
|
|
</div>
|
|
{% endif %}
|
|
{% if g.user and g.user.role_admin() and not profile and not new_user %}
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="delete"> Delete this user
|
|
</label>
|
|
</div>
|
|
{% endif %}
|
|
<button type="submit" class="btn btn-default">Submit</button>
|
|
</form>
|
|
|
|
{% if downloads %}
|
|
<h2>Recent Downloads</h2>
|
|
{% for entry in downloads %}
|
|
<div class="col-sm-2">
|
|
<a class="pull-left" href="{{ url_for('show_book', id=entry.id) }}">
|
|
<img class="media-object" width="100" src="{{ url_for('get_cover', cover_path=entry.path) }}" alt="...">
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|