This website requires JavaScript.
34 changed files with
34 additions and
34 deletions
@ -1,5 +1,5 @@
{% extends 'layout.html' %}
{% load fr_display %}
{% load bookwyrm_tags %}
{% block content %}
< div class = "block" >
< h1 class = "title" > {{ author.name }}< / h1 >
@ -1,5 +1,5 @@
{% extends 'layout.html' %}
{% load fr_display %}
{% load bookwyrm_tags %}
{% load humanize %}
{% block content %}
@ -1,5 +1,5 @@
{% extends 'layout.html' %}
{% load fr_display %}
{% load bookwyrm_tags %}
{% block content %}
< div class = "block" >
< h1 class = "title" > Editions of < a href = "/book/{{ work.id }}" > "{{ work.title }}"< / a > < / h1 >
@ -1,5 +1,5 @@
{% extends 'layout.html' %}
{% load fr_display %}
{% load bookwyrm_tags %}
{% block content %}
< div class = "columns" >
@ -1,5 +1,5 @@
{% extends 'layout.html' %}
{% load fr_display %}
{% load bookwyrm_tags %}
{% block content %}
< div class = "block" >
< h1 class = "title" >
@ -1,5 +1,5 @@
{% extends 'layout.html' %}
{% load fr_display %}
{% load bookwyrm_tags %}
{% block content %}
< div class = "block" >
< h1 class = "title" >
@ -1,5 +1,5 @@
{% extends 'layout.html' %}
{% load fr_display %}
{% load bookwyrm_tags %}
{% load humanize %}
{% block content %}
< div class = "block" >
@ -1,4 +1,4 @@
{% load fr_display %}
{% load bookwyrm_tags %}
<!DOCTYPE html>
< html lang = "en" >
< head >
@ -1,6 +1,6 @@
{% extends 'layout.html' %}
{% load humanize %}
{% load fr_display %}
{% load bookwyrm_tags %}
{% block content %}
< div class = "block" >
< h1 class = "title" > Notifications< / h1 >
@ -1,5 +1,5 @@
{% extends 'layout.html' %}
{% load fr_display %}
{% load bookwyrm_tags %}
{% block content %}
< div class = "columns" >
@ -1,3 +1,3 @@
{% load fr_display %}
{% load bookwyrm_tags %}
< img class = "avatar image {% if large %}is-96x96{% else %}is-32x32{% endif %}" src = "{% if user.avatar %}/images/{{ user.avatar }}{% else %}/static/images/default_avi.jpg{% endif %}" alt = "avatar for {{ user|username }}" >
@ -1,4 +1,4 @@
{% load fr_display %}
{% load bookwyrm_tags %}
< div class = "cover-container is-{{ size }}" >
{% if book.cover %}
< img class = "book-cover" src = "/images/{{ book.cover }}" alt = "{% include 'snippets/cover_alt.html' with book=book %}" >
@ -1,4 +1,4 @@
{% load fr_display %}
{% load bookwyrm_tags %}
< div class = "columns" >
< div class = "column is-narrow" >
< div >
@ -1,4 +1,4 @@
{% load fr_display %}
{% load bookwyrm_tags %}
{% with status.id|uuid as uuid %}
< form name = "boost" action = "/boost/{{ status.id }}" method = "post" onsubmit = "return interact(event)" class = "boost-{{ status.id }}-{{ uuid }} {% if request.user|boosted:status %}hidden{% endif %}" data-id = "boost-{{ status.id }}-{{ uuid }}" >
{% csrf_token %}
@ -1,2 +1,2 @@
{% load fr_display %}
{% load bookwyrm_tags %}
'{{ book.title }}' Cover ({{ book|edition_info }})
@ -1,5 +1,5 @@
{% load humanize %}
{% load fr_display %}
{% load bookwyrm_tags %}
< div class = "tabs is-boxed" >
< ul role = "tablist" >
@ -1,4 +1,4 @@
{% load fr_display %}
{% load bookwyrm_tags %}
{% with status.id|uuid as uuid %}
< form name = "favorite" action = "/favorite/{{ status.id }}" method = "POST" onsubmit = "return interact(event)" class = "fav-{{ status.id }}-{{ uuid }} {% if request.user|liked:status %}hidden{% endif %}" data-id = "fav-{{ status.id }}-{{ uuid }}" >
{% csrf_token %}
@ -1,4 +1,4 @@
{% load fr_display %}
{% load bookwyrm_tags %}
< div >
< input class = "toggle-control" type = "checkbox" name = "finish-reading-{{ uuid }}" id = "finish-reading-{{ uuid }}" >
< div class = "modal toggle-content hidden" >
@ -1,4 +1,4 @@
{% load fr_display %}
{% load bookwyrm_tags %}
{% if request.user|follow_request_exists:user %}
< form action = "/accept-follow-request/" method = "POST" >
{% csrf_token %}
@ -1,4 +1,4 @@
{% load fr_display %}
{% load bookwyrm_tags %}
< div class = "select" >
{% with 0|uuid as uuid %}
{% if not no_label %}
@ -1,4 +1,4 @@
{% load fr_display %}
{% load bookwyrm_tags %}
< span class = "is-sr-only" > Leave a rating< / span >
< div class = "field is-grouped stars rate-stars" >
{% for i in '12345'|make_list %}
@ -1,4 +1,4 @@
{% load fr_display %}
{% load bookwyrm_tags %}
{% with activity.id|uuid as uuid %}
< form class = "is-flex-grow-1" name = "reply" action = "/reply" method = "post" onsubmit = "return reply(event)" >
< div class = "columns" >
@ -1,5 +1,5 @@
{% load humanize %}
{% load fr_display %}
{% load bookwyrm_tags %}
{% if shelf.books.all|length > 0 %}
< table class = "table is-striped is-fullwidth" >
@ -1,4 +1,4 @@
{% load fr_display %}
{% load bookwyrm_tags %}
{% if request.user.is_authenticated %}
{% with book.id|uuid as uuid %}
@ -1,4 +1,4 @@
{% load fr_display %}
{% load bookwyrm_tags %}
{% if not status.deleted %}
{% if status.status_type == 'Boost' %}
{% include 'snippets/avatar.html' with user=status.user %}
@ -1,4 +1,4 @@
{% load fr_display %}
{% load bookwyrm_tags %}
{% load humanize %}
{% if not status.deleted %}
@ -1,4 +1,4 @@
{% load fr_display %}
{% load bookwyrm_tags %}
< div class = "block" >
{% if status.status_type == 'Review' %}
< h3 >
@ -1,4 +1,4 @@
{% load fr_display %}
{% load bookwyrm_tags %}
{% include 'snippets/avatar.html' with user=status.user %}
{% include 'snippets/username.html' with user=status.user %}
@ -1,4 +1,4 @@
{% load fr_display %}
{% load bookwyrm_tags %}
< div class = "block" >
{% with depth=depth|add:1 %}
@ -1,4 +1,4 @@
{% load fr_display %}
{% load bookwyrm_tags %}
{% with 0|uuid as uuid %}
{% if full %}
@ -1,5 +1,5 @@
{% load humanize %}
{% load fr_display %}
{% load bookwyrm_tags %}
< div class = "block" >
< div class = "columns" >
< div class = "column is-narrow" >
@ -1,2 +1,2 @@
{% load fr_display %}
{% load bookwyrm_tags %}
< a href = "/user/{{ user | username }}" class = "user" > {% if user.name %}{{ user.name }}{% else %}{{ user | username }}{% endif %}< / a > {% if possessive %}'s{% endif %}{% if show_full and user.name or show_full and user.localname %} ({{ user.username }}){% endif %}
@ -1,5 +1,5 @@
{% extends 'layout.html' %}
{% load fr_display %}
{% load bookwyrm_tags %}
{% block content %}
< div class = "block" >