evorepo/templates/todolists/public_list.html
Dan McGee ff427f6d9b Mark todolist description as being safe to contain HTML
Hopefully we can trust our developers on this one. :)

Signed-off-by: Dan McGee <dan@archlinux.org>
2010-08-27 09:50:55 -05:00

31 lines
793 B
HTML

{% extends "base.html" %}
{% block title %}Arch Linux - Todo Lists{% endblock %}
{% block content %}
<div class="box">
<h2>Developer Todo Lists</h2>
<div id="public_todo_lists">
{% for list in todo_lists %}
<h4>{{list.name}}</h4>
<div class="todo_list">
<p>{{list.description|safe}}</p>
<ul>
{% for pkg in list.packages %}
<li>{{pkg.pkg.pkgname}}</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
</div>
{% load cdn %}{% jquery %}
<script type="text/javascript">
$("#public_todo_lists h4").click(
function(e) {
$(this).next().toggle();
}
);
</script>
{% endblock %}