changeset 90:eb3371142f4f

Remove inheriting from whitebox.djhtml for template files
author dellsystem <ilostwaldo@gmail.com>
date Fri, 24 Aug 2012 23:48:14 -0400
parents 64f69c85df71
children 8ef0a2a03034
files templates/403.html templates/404.html templates/500.html templates/bundle/bundle.djhtml templates/bundle/index.djhtml templates/licenses/index.djhtml templates/licenses/license.djhtml templates/profile/user.djhtml templates/registration/activate.html templates/registration/registration_complete.html templates/registration/registration_form.html
diffstat 11 files changed, 16 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- a/templates/403.html	Fri Aug 24 23:47:25 2012 -0400
+++ b/templates/403.html	Fri Aug 24 23:48:14 2012 -0400
@@ -1,4 +1,4 @@
-{% extends "whitebox.djhtml" %}
+{% extends "base.djhtml" %}
 
 {% block title %}
 Access denied
--- a/templates/404.html	Fri Aug 24 23:47:25 2012 -0400
+++ b/templates/404.html	Fri Aug 24 23:48:14 2012 -0400
@@ -1,4 +1,4 @@
-{% extends "whitebox.djhtml" %}
+{% extends "base.djhtml" %}
 
 {% block title %}
 Object not found
--- a/templates/500.html	Fri Aug 24 23:47:25 2012 -0400
+++ b/templates/500.html	Fri Aug 24 23:48:14 2012 -0400
@@ -1,4 +1,4 @@
-{% extends "whitebox.djhtml" %}
+{% extends "base.djhtml" %}
 {% block title %}
 Server error
 {% endblock %}
--- a/templates/bundle/bundle.djhtml	Fri Aug 24 23:47:25 2012 -0400
+++ b/templates/bundle/bundle.djhtml	Fri Aug 24 23:48:14 2012 -0400
@@ -1,4 +1,4 @@
-{% extends "whitebox.djhtml" %}
+{% extends "base.djhtml" %}
 
 {% block content %}
 <div class="info">
--- a/templates/bundle/index.djhtml	Fri Aug 24 23:47:25 2012 -0400
+++ b/templates/bundle/index.djhtml	Fri Aug 24 23:48:14 2012 -0400
@@ -1,4 +1,4 @@
-{% extends "whitebox.djhtml" %}
+{% extends "base.djhtml" %}
 
 {% block content %}
 <h1> Latest bundles </h1>
--- a/templates/licenses/index.djhtml	Fri Aug 24 23:47:25 2012 -0400
+++ b/templates/licenses/index.djhtml	Fri Aug 24 23:48:14 2012 -0400
@@ -1,4 +1,4 @@
-{% extends "whitebox.djhtml" %}
+{% extends "base.djhtml" %}
 
 {% block boxtitle %}
 Free licenses 
--- a/templates/licenses/license.djhtml	Fri Aug 24 23:47:25 2012 -0400
+++ b/templates/licenses/license.djhtml	Fri Aug 24 23:48:14 2012 -0400
@@ -1,4 +1,4 @@
-{% extends "whitebox.djhtml" %}
+{% extends "base.djhtml" %}
 
 {% block boxtitle %}
 {{license.name}}
--- a/templates/profile/user.djhtml	Fri Aug 24 23:47:25 2012 -0400
+++ b/templates/profile/user.djhtml	Fri Aug 24 23:48:14 2012 -0400
@@ -1,4 +1,4 @@
-{% extends "whitebox.djhtml" %}
+{% extends "base.djhtml" %}
 
 {% block boxtitle %}
 {{profile.user.username}} <br/>
@@ -11,7 +11,7 @@
 {% endif %}
 {% endblock boxtitle%}
 
-{% block boxcontents %}
+{% block content %}
 <div id="userinfo">
   {% if profile.user.first_name or profile.user.last_name %}
   <span class="userfield">Name</span>
@@ -39,7 +39,7 @@
   </p>
 </div>
 {% endif %}
-{% endblock boxcontents %}
+{% endblock %}
 
 {% block content-related %}
 {% if bundles or snippets %}
--- a/templates/registration/activate.html	Fri Aug 24 23:47:25 2012 -0400
+++ b/templates/registration/activate.html	Fri Aug 24 23:48:14 2012 -0400
@@ -1,4 +1,4 @@
-{% extends "whitebox.djhtml" %}
+{% extends "base.djhtml" %}
 
 {% block boxtitle %}
 Account activation
--- a/templates/registration/registration_complete.html	Fri Aug 24 23:47:25 2012 -0400
+++ b/templates/registration/registration_complete.html	Fri Aug 24 23:48:14 2012 -0400
@@ -1,4 +1,4 @@
-{% extends "whitebox.djhtml" %}
+{% extends "base.djhtml" %}
 {% block boxcontents %}
 <p>
   Activation email sent. Please check your inbox to complete your
--- a/templates/registration/registration_form.html	Fri Aug 24 23:47:25 2012 -0400
+++ b/templates/registration/registration_form.html	Fri Aug 24 23:48:14 2012 -0400
@@ -1,11 +1,11 @@
-{% extends "whitebox.djhtml" %}
+{% extends "base.djhtml" %}
 
-{% block boxtitle %}
+{% block title %}
 Registration details
 {% endblock %}
 
 
-{% block boxcontents %}
+{% block content %}
 <p>
   Please give us some basic information to set up your account.
   Valid usernames consist of letters, numbers, and underscores.
@@ -22,6 +22,6 @@
   <table>
     {{form.as_table}}
   </table>
-  <input class="button" type="submit" value="Submit" />
+  <button class="button" type="submit">Submit</button>
 </form>
 {% endblock %}