Changeset 695d358 for remit/remit_templates/registration
- Timestamp:
- Jun 15, 2014, 10:06:46 PM (11 years ago)
- Branches:
- master
- Children:
- 6479b5c
- Parents:
- 2e4e1fb
- git-author:
- Alex Dehnert <adehnert@…> (06/15/14 21:36:47)
- git-committer:
- Alex Dehnert <adehnert@…> (06/15/14 22:06:46)
- Location:
- remit/remit_templates/registration
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
remit/remit_templates/registration/logged_out.html
r732d9eb r695d358 1 1 {% extends "base.html" %} 2 {% load url from future %} 2 3 3 4 {% block title %}Logged out of Remit{% endblock %} … … 6 7 <h2>Logged out of Remit</h2> 7 8 8 <p>You have been logged out of Remit. You can return to the <a href='{% url homepage %}'>homepage</a> or <a href='{% url login%}'>login again</a>.</p>9 <p>You have been logged out of Remit. You can return to the <a href='{% url "homepage" %}'>homepage</a> or <a href='{% url "login" %}'>login again</a>.</p> 9 10 {% endblock %} -
remit/remit_templates/registration/login.html
r1ba734f r695d358 1 1 {% extends "base.html" %} 2 {% load url from future %} 2 3 3 4 {% block title %}Log in to Remit{% endblock %} … … 11 12 {% endif %} 12 13 13 <form method="post" action="{% url django.contrib.auth.views.login%}">14 <form method="post" action="{% url "django.contrib.auth.views.login" %}"> 14 15 {% csrf_token %} 15 16 <table>
Note: See TracChangeset
for help on using the changeset viewer.