Skip to content

Commit

Permalink
Switch name from "design.html" to "base.html"
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon-rhodes committed Sep 28, 2014
1 parent 52f50c9 commit fa36c2a
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion py3/chapter11/templates/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "design.html" %}
{% extends "base.html" %}
{% block title %}Welcome, {{ username }}{% endblock %}
{% block body %}
{% for message in flash_messages %}
Expand Down
2 changes: 1 addition & 1 deletion py3/chapter11/templates/login.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "design.html" %}
{% extends "base.html" %}
{% block title %}Please log in{% endblock %}
{% block body %}
<form method="post">
Expand Down
2 changes: 1 addition & 1 deletion py3/chapter11/templates/pay.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "design.html" %}
{% extends "base.html" %}
{% block title %}Make a Payment{% endblock %}
{% block body %}
<form method="post" action="/pay">
Expand Down
2 changes: 1 addition & 1 deletion py3/chapter11/templates/pay2.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "design.html" %}
{% extends "base.html" %}
{% block title %}Make a Payment{% endblock %}
{% block body %}
<form method="post" action="/pay">
Expand Down

0 comments on commit fa36c2a

Please sign in to comment.