view templates/login.djhtml @ 165:27de4f31f9d5

Add from __future__ import with_statement The running Agora instance is using Python 2.5, and the with statement needs a future import for 2.5
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Wed, 17 Oct 2012 10:29:14 -0400
parents 2bca07be6e51
children
line wrap: on
line source

{% extends "base.djhtml" %}

{% block content %}
{% include "login_form.djhtml" %}
{% endblock %}

{% block login_form %}
{% endblock %}

{% block login_breadcrumbs %}
{% endblock %}

{% block breadcrumbs %}
<a href="{% url home %}">&laquo; Back to home</a>
{% endblock %}