def about(request): return direct_to_template(request, "about.html", { 'breadcrumb': [ home, { 'title': "About" } ] })
def index(request): return direct_to_template(request, "index.html")
def sandbox(request): return direct_to_template(request, "sandbox.html", { 'text': "**bobby**", })
def project_detail_dev(request, slug): proj = get_object_or_404(Project,slug=slug) return direct_to_template(request, "projects/project_detail_dev.html", { 'breadcrumb': proj.dev_breadcrumb(), 'project': proj })
def section_detail(request, slug): ps = get_object_or_404(ProjectSection,slug=slug) return direct_to_template(request, "projects/category_detail.html", { 'breadcrumb': ps.breadcrumb(), 'section': ps })
def index(request): return direct_to_template(request, "projects/index.html", { 'breadcrumb': [ home, { 'title': "Projects" } ] })