app/soc/templates/soc/models/list.html
author Sverre Rabbelier <srabbelier@gmail.com>
Fri, 21 Nov 2008 23:45:37 +0000
changeset 539 e30462354e26
parent 518 d9d31d316a74
child 625 ec867361b5ba
permissions -rw-r--r--
Allow for multiple list objects At the moment there's not really a practical use for it, since there is no way to make soc.views.models.base.View.list() show more than one list, but it shouldn't be too hard to allow for that. Patch by: Sverre Rabbelier

{% extends "soc/base.html" %}
{% comment %}
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
{% endcomment %}
{% load forms_helpers %}
{% block body %}
{% for _ in list.lists %}
<p>
{% include list.next_list %}
</p>
{% endfor %}

{% endblock %}