Skip to content

Commit

Permalink
Added file name comments to templates
Browse files Browse the repository at this point in the history
  • Loading branch information
rladdusaw committed Jul 26, 2016
1 parent 77a3151 commit 30080a8
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 0 deletions.
2 changes: 2 additions & 0 deletions templates/accounts/error.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{# /templates/accounts/error.html #}

{% extends 'base.html' %}

{% block title_text %}Login Test{% endblock %}
Expand Down
2 changes: 2 additions & 0 deletions templates/accounts/login.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{# /templates/accounts/login.html #}

{% extends 'base.html' %}

{% block title_text %}Login Test{% endblock %}
Expand Down
2 changes: 2 additions & 0 deletions templates/accounts/register.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{# /templates/accounts/register.html #}

{% extends 'base.html' %}

{% block title_text %}Login Test{% endblock %}
Expand Down
2 changes: 2 additions & 0 deletions templates/base.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{# /templates/base.html #}

<!DOCTYPE html>

<html lang="en">
Expand Down
2 changes: 2 additions & 0 deletions templates/exchange/create_exchange.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{# /templates/exchange/create_exchange.html #}

{% extends 'base.html' %}

{% load crispy_forms_tags %}
Expand Down
2 changes: 2 additions & 0 deletions templates/home.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{# /templates/home.html #}

{% extends 'base.html' %}

{% block title_text %}Login Test{% endblock %}
Expand Down
2 changes: 2 additions & 0 deletions templates/registration/login.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{# /templates/registration/login.html #}

{% extends 'base.html' %}

{% block title_text %}Login Test{% endblock %}
Expand Down
2 changes: 2 additions & 0 deletions templates/registration/logout.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{# /templates/registration/logout.html #}

{% extends 'base.html' %}

{% block title_text %}Login Test{% endblock %}
Expand Down
2 changes: 2 additions & 0 deletions templates/registration/registration_form.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{# /templates/registration/registration_form.html #}

{% extends 'base.html' %}

{% block title_text %}Login Test{% endblock %}
Expand Down
2 changes: 2 additions & 0 deletions templates/secret.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{# /templates/secret.html #}

{% extends 'base.html' %}

{% block title_text %}Secret Page{% endblock %}
Expand Down
2 changes: 2 additions & 0 deletions templates/wishlist/create_wishlist.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{# /templates/wishlist/create_wishlist.html #}

{% extends 'base.html' %}

{% load crispy_forms_tags %}
Expand Down
2 changes: 2 additions & 0 deletions templates/wishlist/wishlist_detail.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{# /templates/wishlist/wishlist_detail.html #}

{% extends 'base.html' %}

{% load crispy_forms_tags %}
Expand Down
2 changes: 2 additions & 0 deletions templates/wishlist/wishlist_list.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{# /templates/wishlist/wishlist_list.html #}

{% extends 'base.html' %}

{% block title_text %}Profile{% endblock %}
Expand Down

0 comments on commit 30080a8

Please sign in to comment.