templates/messengerbag/note_detail.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 |
ed9aff132907 |
children |
(none) |
{% extends "messengerbag/base.html" %}
{% load typogrify %}
{% load markup %}
{% block title %}{{ note.title }}{% endblock %}
{% block content %}
<h1><a href="{{ note.get_absolute_url }}">{{ note.title|typogrify }}</a></h1>
<p id="mb-navigation">
<a href="{% url note-list %}">« back to your notes</a>
<a href="{% url note-edit note.id %}">edit this note</a>
</p>
<div id="mb-rendered-note">
{{ note.body|markdown:"codehilite"|typogrify }}
</div>
{% endblock %}