refine search sidebar
This commit is contained in:
parent
177cf4ec9e
commit
4fa701a60d
2 changed files with 36 additions and 2 deletions
|
@ -39,8 +39,10 @@ if you are doing debug or development:
|
|||
- `smtp+tls://<username>:<password>@<host>:<port>`
|
||||
- `smtp+ssl://<username>:<password>@<host>:<port>`
|
||||
- `anymail://<anymail_backend_name>?<anymail_args>`, to send email via email service providers, see [anymail doc](https://anymail.dev/)
|
||||
- `DISCORD_WEBHOOKS` - Discord channel to send notification about user submitted suggestion and changes, e.g. `suggest=https://discord.com/api/webhooks/123/abc,audit=https://discord.com/api/webhooks/123/def`. Both suggest and audit channels must be in forum mode.
|
||||
|
||||
## Settings for administration
|
||||
- `DISCORD_WEBHOOKS` - Discord channel to send notification about user submitted suggestion and changes, e.g. `suggest=https://discord.com/api/webhooks/123/abc,audit=https://discord.com/api/webhooks/123/def`. Both suggest and audit channels must be in forum mode.
|
||||
- `NEODB_SENTRY_DSN` , `TAKAHE_SENTRY_DSN` - [Sentry](https://neodb.sentry.io/) DSN to log errors.
|
||||
|
||||
## Settings for Federation
|
||||
|
||||
|
@ -50,6 +52,7 @@ if you are doing debug or development:
|
|||
|
||||
`relay.neodb.net` is [open sourced](https://github.com/neodb-social/neodb-relay) and operated by NeoDB developers, it works like most ActivityPub relays except it only relays between NeoDB instances, it helps public information like catalogs and trends flow between NeoDB instances. You may set it to `True` if you don't want to relay public posts with other NeoDB instances.
|
||||
|
||||
|
||||
## Settings for external item sources
|
||||
|
||||
- `SPOTIFY_API_KEY` - base64('CLIENT_ID:SECRET'), see [spotify doc](https://developer.spotify.com/documentation/web-api/tutorials/client-credentials-flow)
|
||||
|
|
|
@ -28,7 +28,38 @@
|
|||
</div>
|
||||
{% include "_pagination.html" %}
|
||||
{% block sidebar %}
|
||||
{% include "_sidebar.html" with show_profile=1 identity=user.identity %}
|
||||
<aside class="grid__aside bottom">
|
||||
<p>
|
||||
{% trans 'Addtional filters may be added to query:' %}
|
||||
<li>
|
||||
<code>status:complete</code> - {% trans 'filter by status, one of wishlist/progress/complete/dropped' %}
|
||||
</li>
|
||||
<li>
|
||||
<code>rating:6..8</code> - {% trans 'filter by rating range' %}
|
||||
</li>
|
||||
<li>
|
||||
<code>rating:0</code> - {% trans 'filter unrated' %}
|
||||
</li>
|
||||
<li>
|
||||
<code>tag:scifi</code> - {% trans 'filter by tag' %}
|
||||
</li>
|
||||
<li>
|
||||
<code>category:tv</code> - {% trans 'filter by category, one of movie/tv/book/music/game/performance/podcast' %}
|
||||
</li>
|
||||
<li>
|
||||
<code>type:note</code> - {% trans 'filter by type, one of mark/comment/review/collection/note' %}
|
||||
</li>
|
||||
<li>
|
||||
<code>date:2021-9-11</code> - {% trans 'filter by date' %}
|
||||
</li>
|
||||
<li>
|
||||
<code>date:2022-2</code> - {% trans 'filter by month' %}
|
||||
</li>
|
||||
<li>
|
||||
<code>date:2022..2023</code> - {% trans 'filter by date range' %}
|
||||
</li>
|
||||
</p>
|
||||
</aside>
|
||||
{% endblock %}
|
||||
</main>
|
||||
{% include '_footer.html' %}
|
||||
|
|
Loading…
Add table
Reference in a new issue