Build and Push Docker Container / build-and-push (push) Successful in 1m36s
- Add structured URL codec with compact alphabets and dictionary support. - Add public decode, redirect, and QR endpoints for composed links. - Add authenticated encode API and link composer UI. - Generate PNG QR codes via qrcode with Pillow support. - Register the new blueprint and navigation entry. - Cover public decode, auth gating, redirect URL parsing, and QR output. - Bump NanoShare to 1.27.0 and lock new dependencies.
27 lines
1.0 KiB
HTML
27 lines
1.0 KiB
HTML
{% from 'macro/submenu.htm' import render_submenu %}
|
|
{% from 'macro/left_submenu.htm' import render_submenu_left %}
|
|
|
|
<nav>
|
|
<input type="checkbox" id="menu-toggle" />
|
|
<label for="menu-toggle" class="menu-icon">
|
|
<i class="fa fa-bars"></i>
|
|
</label>
|
|
<ul id="nav-list">
|
|
<li><a href="{{ url_for('side_main.index') }}">NanoShare</a></li>
|
|
|
|
<li><a href="{{ url_for('link_composer.link_composer_page') }}">Links</a></li>
|
|
|
|
{% if user %}
|
|
<li><a href="{{ url_for('side_main.index') }}">Upload</a></li>
|
|
<li><a href="{{ url_for('side_main.files_list') }}">Files</a></li>
|
|
<li><a href="{{ url_for('side_main.access_list') }}">Accesslog</a></li>
|
|
|
|
{{ render_submenu_left('user', 'fa-solid fa-user-tie', user.name, [
|
|
{'label': 'Logout', 'endpoint': 'auth_login.logout', 'icon': 'fa-solid fa-right-from-bracket'}
|
|
]) }}
|
|
{% else %}
|
|
<li class="left-side"><a href="{{ url_for('auth_login.login') }}"><i class="fa-solid fa-right-to-bracket"></i>Login</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</nav>
|