]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/wiki/watchlist.html
docs: Move tree
[ipfire.org.git] / src / templates / wiki / watchlist.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("Your Watchlist") }}{% end block %}
4
5 {% block sidebar %}
6 {% set help = backend.wiki.get_page("/wiki/watchlist") %}
7
8 {% if help %}
9 {% raw help.html %}
10 {% end %}
11 {% end block %}
12
13 {% block main %}
14 <div class="card">
15 <div class="card-body">
16 <h5>{{ _("Your Watchlist") }}</h5>
17
18 {% if pages %}
19 {% module WikiList(pages) %}
20 {% else %}
21 <div class="alert alert-light mb-0">
22 {{ _("You do not have any pages on your watchlist") }}
23 </div>
24 {% end %}
25 </div>
26 </div>
27 {% end block %}