{% load region_tags %} {% load tabs_tags %} {% load i18n %}
{% block title %}RapidSMS{% endblock %}
{% block stylesheets %}
{% endblock %} {% block javascripts %} {% endblock %}
{% region "top" %} {% block header %}
RapidSMS
{% block auth %}
{% if user.is_authenticated %}
{% trans "Log out" %} {{ user.username }}
{% else %}
{% trans "Log in" %}
{% endif %}
{% endblock %} {% get_tabs as tabs %}
{% for tab in tabs %}
{{ tab.caption }}
{% endfor %}
{% block page_tabs %} {% endblock %}
{% endblock %} {% block breadcrumbs %}{% if breadcrumbs %}
{% for caption, url in breadcrumbs %}
{{ caption }}
{% if not forloop.last %}
»
{% endif %}{% endfor %}
{% endif %} {% endblock %}
{% block content %}{% endblock %}
{% block footer %} {% endblock %} {% region "bottom" %}