From 1d013f5173dbcf0f3d58ba98421800548a1c7d3e Mon Sep 17 00:00:00 2001 From: Christopher Charbonneau Wells Date: Fri, 20 Oct 2017 09:49:37 -0400 Subject: [PATCH] Use BabyBlotter base template for registration base. This keep any changes to the main application base structure in line with the registration pages without duplication. --- babyblotter/templates/registration/base.html | 21 +++----------------- 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/babyblotter/templates/registration/base.html b/babyblotter/templates/registration/base.html index cb6848f3..f59bb391 100644 --- a/babyblotter/templates/registration/base.html +++ b/babyblotter/templates/registration/base.html @@ -1,21 +1,7 @@ +{% extends "babyblotter/base.html" %} {% load static widget_tweaks %} - - - - - - {% block title %}{% endblock %} | Baby Blotter - {% if debug %} - - - {% else %} - - - {% endif %} - - +{% block page %}

Baby Blotter

@@ -24,5 +10,4 @@ {% block content %}{% endblock %}
- - +{% endblock %}