{% extends "base.html" %} {% load url from future %} {% block title %}Dashboard{% endblock %} {% block stylesheets %} {{ block.super }} {% endblock %} {% block content %}

See the RapidSMS documentation to learn how to install community apps or create your own.

To replace this message with a different view, add a pattern in app's urls module with the pattern: r'^$.

For example:

from django.conf.urls import patterns, url
from myproject.myapp import views

urlpatterns = patterns('',
    url(r'^$', views.dashboard)
)
{% endblock %}