{% extends "layout.html" %} {% load url from future %} {% block title %}Dashboard{% endblock %} {% block stylesheets %} {{ block.super }} {% endblock %} {% block content %}
See the RapidSMS wiki 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.defaults import *
from myproject.myapp import views
urlpatterns = patterns('',
url(r'^$', views.dashboard)
)