diff options
Diffstat (limited to 'project/templates/user')
-rw-r--r-- | project/templates/user/_usermenu.html | 8 | ||||
-rw-r--r-- | project/templates/user/account.html | 6 | ||||
-rw-r--r-- | project/templates/user/editprofile.html | 4 | ||||
-rw-r--r-- | project/templates/user/login.html | 10 | ||||
-rw-r--r-- | project/templates/user/password.html | 4 | ||||
-rw-r--r-- | project/templates/user/username.html | 4 |
6 files changed, 18 insertions, 18 deletions
diff --git a/project/templates/user/_usermenu.html b/project/templates/user/_usermenu.html index db03c78..6f5a8d0 100644 --- a/project/templates/user/_usermenu.html +++ b/project/templates/user/_usermenu.html @@ -1,16 +1,16 @@ <div class="right"> <ul class="horizontal-menu"> <li> - <a href="{% url kiwipycon_account %}">My Profile</a> + <a href="{% url scipycon_account %}">My Profile</a> </li> <li> - <a href="{% url kiwipycon_edit_profile %}">Edit Profile</a> + <a href="{% url scipycon_edit_profile %}">Edit Profile</a> </li> <li> - <a href="{% url kiwipycon_password %}">Change Password</a> + <a href="{% url scipycon_password %}">Change Password</a> </li> <li> - <a href="{% url kiwipycon_username %}">Change Username</a> + <a href="{% url scipycon_username %}">Change Username</a> </li> </ul> </div> diff --git a/project/templates/user/account.html b/project/templates/user/account.html index 2862196..24d320a 100644 --- a/project/templates/user/account.html +++ b/project/templates/user/account.html @@ -7,7 +7,7 @@ {% block content %} <h1>My Profile: {{ user.first_name }} {{user.last_name}}</h1> -<table class="kiwipycon-default"> +<table class="scipycon-default"> <tr> <td class="label"> Username: @@ -25,7 +25,7 @@ <span>{{ user.get_full_name }}</span> {% else %} <span class="important">No name, please <a - href="{% url kiwipycon_edit_profile %}">edit profile</a>.</span> + href="{% url scipycon_edit_profile %}">edit profile</a>.</span> {% endif %} </td> <td rowspan="4"> @@ -86,7 +86,7 @@ requirements.</p> {% if talks %} <div id="talks"> <h2>Your Submitted Talks</h2> - <table class="kiwipycon-default" border="1"> + <table class="scipycon-default" border="1"> <th>Title</th> <th>Duration</th> <th>Audience</th> diff --git a/project/templates/user/editprofile.html b/project/templates/user/editprofile.html index fd73d3b..67857e8 100644 --- a/project/templates/user/editprofile.html +++ b/project/templates/user/editprofile.html @@ -6,12 +6,12 @@ <h1>Edit Your Profile</h1> - <form action="{% url kiwipycon_edit_profile %}" + <form action="{% url scipycon_edit_profile %}" enctype="multipart/form-data" method="post"> <fieldset> <legend>Edit Profile</legend> - <table class="kiwipycon-default"> + <table class="scipycon-default"> {{ form }} </table> <input type="hidden" diff --git a/project/templates/user/login.html b/project/templates/user/login.html index 9d920ad..65e8727 100644 --- a/project/templates/user/login.html +++ b/project/templates/user/login.html @@ -14,15 +14,15 @@ <form class="authenticate" enctype="multipart/form-data" - action="{% url kiwipycon_login %}" + action="{% url scipycon_login %}" method="post"> - <table class="kiwipycon-default"> + <table class="scipycon-default"> {{ login_form }} <tr> <td></td> <td> - <a href="{% url kiwipycon_password_reset %}">Forgot password?</a> + <a href="{% url scipycon_password_reset %}">Forgot password?</a> </td> </tr> </table> @@ -50,9 +50,9 @@ If you are not already a member of the site you can register here. </div> - <form action="{% url kiwipycon_login %}" + <form action="{% url scipycon_login %}" method="post"> - <table class="kiwipycon-default"> + <table class="scipycon-default"> {{ register_form }} </table> <input type="hidden" diff --git a/project/templates/user/password.html b/project/templates/user/password.html index ece1e96..db9b890 100644 --- a/project/templates/user/password.html +++ b/project/templates/user/password.html @@ -11,9 +11,9 @@ Please enter your old password, for security's sake, and then enter your new password twice so we can verify you typed it in correctly. </p> - <form action="{% url kiwipycon_password %}" + <form action="{% url scipycon_password %}" method="post"> - <table class="kiwipycon-default"> + <table class="scipycon-default"> <tr> <td class="label"> <label for="id_old_password">Old password:</label> diff --git a/project/templates/user/username.html b/project/templates/user/username.html index 0e101a8..5ebbd1c 100644 --- a/project/templates/user/username.html +++ b/project/templates/user/username.html @@ -5,9 +5,9 @@ {% block content %} <h1>Change your username</h1> - <form action="{% url kiwipycon_username %}" + <form action="{% url scipycon_username %}" method="post"> - <table class="kiwipycon-default"> + <table class="scipycon-default"> <tr> <td class="label"> <label for="id_username">New username:</label> |