templates/messengerbag/note_list.html @ ae2856e8f8dc

Split the projects by type really fast.  This can be done better.
author Steve Losh <steve@stevelosh.com>
date Fri, 21 Aug 2009 18:29:07 -0400
parents 0a73822701d9
children (none)
{% extends "messengerbag/base.html" %}
{% load typogrify %}

{% block title %}Messenger Bag{% endblock %}

{% block content %}
    <h1>Notebook</h1>
    <p id="mb-navigation">
        <a href="{% url note-create %}">+ Create a new note</a>
    </p>
    <p id="mb-note-list">
        {% for note in note_list %}
            <span class="mb-note-list-title">
                <a href="{{ note.get_absolute_url }}">{{ note.title|typogrify }}</a>
            </span>
            <span class="mb-note-list-snip">{{ note.snippet|typogrify }}</span>
            <br/>
        {% endfor %}
    </p>
{% endblock %}