public
Description: Mobile FriendFeed Client
Homepage: http://www.fftogo.com/
Clone URL: git://github.com/bgolub/fftogo.git
Benjamin Golub (author)
Mon Aug 25 19:27:07 -0700 2008
fftogo / templates / lists.html
100644 18 lines (14 sloc) 0.336 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}
 
{% load humanize %}
 
{% block title %}
    Lists
{% endblock %}
 
{% block content %}
    <ul class="lists">
        {% for list in lists %}
            <li class="list">
                <a href="{% url list list.nickname %}">{{ list.name }}</a>
            </li>
        {% endfor %}
    </ul>
{% endblock %}