bookwyrm/bookwyrm/templates/layout.html

201 lines
9.6 KiB
HTML
Raw Normal View History

2021-06-07 16:13:24 +00:00
{% load layout %}
2022-03-04 20:40:06 +00:00
{% load sass_tags %}
2021-06-07 16:13:24 +00:00
{% load i18n %}
{% load static %}
2020-01-25 23:25:19 +00:00
<!DOCTYPE html>
<html lang="{% get_lang %}">
2020-01-25 23:25:19 +00:00
<head>
<title>{% block title %}BookWyrm{% endblock %} - {{ site.name }}</title>
2020-01-25 23:25:19 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2022-03-04 20:40:06 +00:00
<link href="{% sass_src site_theme %}" rel="stylesheet" type="text/css" />
2020-01-25 23:25:19 +00:00
2021-09-10 23:47:59 +00:00
<link rel="search" type="application/opensearchdescription+xml" href="{% url 'opensearch' %}" title="{% blocktrans with site_name=site.name %}{{ site_name }} search{% endblocktrans %}" />
2021-06-07 16:13:24 +00:00
<link rel="shortcut icon" type="image/x-icon" href="{% if site.favicon %}{% get_media_prefix %}{{ site.favicon }}{% else %}{% static "images/favicon.ico" %}{% endif %}">
2022-12-10 16:57:05 +00:00
<link rel="apple-touch-icon" href="{% if site.logo %}{{ media_full_url }}{{ site.logo }}{% else %}{% static "images/logo.png" %}{% endif %}">
2020-01-25 23:25:19 +00:00
{% block opengraph %}
{% include 'snippets/opengraph.html' %}
{% endblock %}
2021-12-20 22:38:18 +00:00
{% block head_links %}{% endblock %}
2020-01-25 23:25:19 +00:00
</head>
<body>
2022-02-17 18:02:27 +00:00
{% block body %}
2021-04-15 19:51:14 +00:00
<nav class="navbar" aria-label="main navigation">
<div class="container">
{% with notification_count=request.user.unread_notification_count has_unread_mentions=request.user.has_unread_mentions %}
2021-04-15 19:51:14 +00:00
<div class="navbar-brand">
<a class="navbar-item" href="/">
2021-12-04 15:17:51 +00:00
<img class="image logo" src="{% if site.logo_small %}{% get_media_prefix %}{{ site.logo_small }}{% else %}{% static "images/logo-small.png" %}{% endif %}" alt="{% blocktrans with site_name=site.name %}{{ site_name }} home page{% endblocktrans %}">
2021-04-15 19:51:14 +00:00
</a>
<form class="navbar-item column is-align-items-start pt-5" action="{% url 'search' %}">
2021-04-15 19:51:14 +00:00
<div class="field has-addons">
<div class="control">
{% if user.is_authenticated %}
{% trans "Search for a book, user, or list" as search_placeholder %}
{% else %}
{% trans "Search for a book" as search_placeholder %}
{% endif %}
<input aria-label="{{ search_placeholder }}" id="tour-search" class="input" type="text" name="q" placeholder="{{ search_placeholder }}" value="{{ query }}">
2021-04-15 19:51:14 +00:00
</div>
<div class="control">
<button class="button" type="submit">
<span class="icon icon-search" title="{% trans 'Search' %}">
<span class="is-sr-only">{% trans "Search" %}</span>
</span>
</button>
</div>
2022-02-27 07:28:13 +00:00
<div class="control">
<button class="button" type="button" data-modal-open="barcode-scanner-modal">
<span class="icon icon-barcode" title="{% trans 'Scan Barcode' %}" id="tour-barcode">
<span class="is-sr-only">{% trans "Scan Barcode" %}</span>
</span>
</button>
2021-04-15 19:51:14 +00:00
</div>
</div>
2021-04-15 19:51:14 +00:00
</form>
{% include "search/barcode_modal.html" with id="barcode-scanner-modal" %}
2020-09-28 21:47:53 +00:00
<button
type="button"
tabindex="0"
class="navbar-burger pulldown-menu my-4 is-flex-touch is-align-items-center is-justify-content-center"
data-controls="main_nav"
aria-expanded="false"
aria-label="{% trans 'Main navigation menu' %}"
>
<i class="icon-dots-three-vertical" aria-hidden="true"></i>
<strong
class="{% if not notification_count %}is-hidden {% elif has_unread_mentions %}is-danger {% else %}is-primary {% endif %} tag is-small px-1"
data-poll-wrapper
>
<span class="is-sr-only">{% trans "Notifications" %}</span>
<strong data-poll="notifications" class="has-text-white">
{{ notification_count }}
</strong>
</strong>
</button>
2021-01-18 04:31:37 +00:00
</div>
2020-09-28 21:47:53 +00:00
<div class="navbar-menu" id="main_nav">
<div class="navbar-start" id="tour-navbar-start">
2021-04-15 19:51:14 +00:00
{% if request.user.is_authenticated %}
<a href="/#feed" class="navbar-item mt-3 py-0">
2021-04-15 19:51:14 +00:00
{% trans "Feed" %}
</a>
<a href="{% url 'lists' %}" class="navbar-item mt-3 py-0">
2021-04-15 19:51:14 +00:00
{% trans "Lists" %}
2020-09-30 18:56:02 +00:00
</a>
<a href="{% url 'discover' %}" class="navbar-item mt-3 py-0">
2021-08-08 15:07:20 +00:00
{% trans "Discover" %}
</a>
2021-04-15 19:51:14 +00:00
{% endif %}
2020-03-15 21:15:36 +00:00
</div>
2021-04-15 19:51:14 +00:00
<div class="navbar-end">
{% if request.user.is_authenticated %}
<div class="navbar-item mt-3 py-0">
{% include 'user_menu.html' %}
2021-04-15 19:51:14 +00:00
</div>
<div class="navbar-item mt-3 py-0">
<a href="{% url 'notifications' %}" class="tags has-addons" id="tour-notifications">
2021-04-15 19:51:14 +00:00
<span class="tag is-medium">
<span class="icon icon-bell" title="{% trans 'Notifications' %}">
<span class="is-sr-only">{% trans "Notifications" %}</span>
</span>
</span>
<span
class="{% if not notification_count %}is-hidden {% elif has_unread_mentions %}is-danger {% endif %}tag is-medium transition-x"
data-poll-wrapper
>
<span data-poll="notifications">{{ notification_count }}</span>
2021-04-15 19:51:14 +00:00
</span>
</a>
</div>
{% else %}
<div class="navbar-item pt-5 pb-0">
2021-04-15 19:51:14 +00:00
{% if request.path != '/login' and request.path != '/login/' %}
<div class="columns">
<div class="column">
<form name="login" method="post" action="{% url 'login' %}?next={{ request.path }}">
2021-04-15 19:51:14 +00:00
{% csrf_token %}
<div class="columns is-variable is-1">
<div class="column">
<label class="is-sr-only" for="id_localname">{% trans "Username:" %}</label>
<input type="text" name="localname" maxlength="150" class="input" required="" id="id_localname" placeholder="{% trans 'username' %}">
</div>
<div class="column">
2021-10-16 17:20:06 +00:00
<label class="is-sr-only" for="id_password">{% trans "Password:" %}</label>
2021-04-15 19:51:14 +00:00
<input type="password" name="password" maxlength="128" class="input" required="" id="id_password" placeholder="{% trans 'password' %}">
2021-05-04 16:34:16 +00:00
<p class="help"><a href="{% url 'password-reset' %}">{% trans "Forgot your password?" %}</a></p>
2021-04-15 19:51:14 +00:00
</div>
<div class="column is-narrow">
<button class="button is-primary" type="submit">{% trans "Log in" %}</button>
</div>
</div>
2021-04-15 19:51:14 +00:00
</form>
</div>
{% if site.allow_registration and request.path != '' and request.path != '/' %}
<div class="column is-narrow">
<a href="/" class="button is-link">
{% trans "Join" %}
</a>
</div>
{% endif %}
2021-01-03 19:10:04 +00:00
</div>
{% endif %}
2020-09-28 21:47:53 +00:00
</div>
{% endif %}
2020-01-25 23:25:19 +00:00
</div>
</div>
{% endwith %}
2020-09-28 21:47:53 +00:00
</div>
</nav>
{% if request.user.is_authenticated and active_announcements.exists %}
<div class="is-flex-grow-1">
2021-05-19 22:35:14 +00:00
<div class="container">
{% for announcement in active_announcements %}
{% include 'snippets/announcement.html' with announcement=announcement %}
2021-05-19 22:35:14 +00:00
{% endfor %}
</div>
</div>
{% endif %}
2020-01-25 23:25:19 +00:00
<main class="section is-flex-grow-1">
2021-04-15 19:51:14 +00:00
<div class="container">
2022-02-18 01:10:12 +00:00
{# almost every view needs to know the user shelves #}
{% with request.user.shelf_set.all as user_shelves %}
2021-04-15 19:51:14 +00:00
{% block content %}
{% endblock %}
2022-02-18 01:10:12 +00:00
{% endwith %}
2021-04-15 19:51:14 +00:00
</div>
</main>
2020-01-25 23:25:19 +00:00
<div role="region" aria-live="polite" id="live-messages">
<p id="status-success-message" class="live-message is-sr-only is-hidden">{% trans "Successfully posted status" %}</p>
<p id="status-error-message" class="live-message notification is-danger p-3 pr-5 pl-5 is-hidden">{% trans "Error posting status" %}</p>
</div>
{% include 'snippets/footer.html' %}
2022-02-17 21:01:36 +00:00
{% endblock %}
<script nonce="{{request.csp_nonce}}">
2020-03-16 01:12:45 +00:00
var csrf_token = '{{ csrf_token }}';
2020-03-15 21:15:36 +00:00
</script>
2021-09-09 14:39:38 +00:00
<script src="{% static "js/bookwyrm.js" %}?v={{ js_cache }}"></script>
<script src="{% static "js/localstorage.js" %}?v={{ js_cache }}"></script>
<script src="{% static "js/status_cache.js" %}?v={{ js_cache }}"></script>
2022-03-01 05:22:49 +00:00
<script src="{% static "js/vendor/quagga.min.js" %}?v={{ js_cache }}"></script>
<script src="{% static "js/vendor/shepherd.min.js" %}?v={{ js_cache }}"></script>
<script src="{% static "js/guided_tour.js" %}?v={{ js_cache }}"></script>
2021-09-09 14:39:38 +00:00
{% block scripts %}{% endblock %}
2021-09-09 14:39:38 +00:00
2020-01-25 23:25:19 +00:00
</body>
</html>