blob: 78e5b51135d1dd07b2f5207156834c8c159efc67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% extends "base.html" %}
{% block title %}Arch Linux - Todo Lists{% endblock %}
{% block content %}
<div id="read_only_todo_lists">
{% for list in todo_lists %}
<h2>{{list.name}}</h2>
<div class="todo_list">
<p>{{list.description}}</p>
<ul>
{% for pkg in list.packages %}
<li>{{pkg.pkg.pkgname}}</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
{% endblock %}
|