]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/docs/watchlist.html
docs: Drop sidebar stuff which we no longer use
[ipfire.org.git] / src / templates / docs / watchlist.html
CommitLineData
2f23c558
MT
1{% extends "base.html" %}
2
3{% block title %}{{ _("Your Watchlist") }}{% end block %}
4
2f23c558
MT
5{% block main %}
6 <div class="card">
7 <div class="card-body">
8 <h5>{{ _("Your Watchlist") }}</h5>
9
da9b37df 10 {% if pages %}
d25f886f 11 {% module DocsList(pages) %}
da9b37df
MT
12 {% else %}
13 <div class="alert alert-light mb-0">
14 {{ _("You do not have any pages on your watchlist") }}
15 </div>
16 {% end %}
2f23c558
MT
17 </div>
18 </div>
19{% end block %}