{% load i18n %} {% load static %} {# keep this right after #} {% block title %}RapidSMS{% endblock %} {% block stylesheets %} {# #} {% endblock %} {% block extra_stylesheets %} {% endblock %} {% block javascripts %} {% endblock %} {% block extra_javascript %} {% endblock %}
{# Wrap everything but the footer so we can push the footer to the bottom #} {% block header %} {% block page_tabs %}{# FIXME - putting anything here won't do anything useful. If anything is using page_tabs, we should probably move this up into the navbar collapsable area. #} {% endblock %} {% endblock %} {# begin page content - has its own div container so we can add top padding #}
{% block breadcrumbs %}{% if breadcrumbs %}
{% for caption, url in breadcrumbs %} {{ caption }}{% if not forloop.last %} »{% endif %}{% endfor %}
{% endif %} {% endblock %} {% block messages %}
{% for message in messages %}
× {{ message }}
{% endfor %}
{% endblock messages %}
{% block content %}{% endblock %}
{# important to push footer down #}
{# end wrap - everything above the footer #}