Skip to content

Commit a697973

Browse files
committed
updates
1 parent b668097 commit a697973

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Section 1 - Course Introduction/DJANGO_COURSE_2.xx/18-Django_Level_Five/learning_users/basic_app/templates/basic_app/registration.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "basic_app/base.html" %}
2-
{% load staticfiles %}
2+
33

44
{% block body_block %}
55
<div class="container">

Section 1 - Course Introduction/DJANGO_COURSE_2.xx/18-Django_Level_Five/learning_users/basic_app/views.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ def register(request):
8080
# This is the render and context dictionary to feed
8181
# back to the registration.html file page.
8282
return render(request,'basic_app/registration.html',
83-
{'user_form':user_form,
84-
'profile_form':profile_form,
85-
'registered':registered})
83+
{'user_form':user_form,
84+
'profile_form':profile_form,
85+
'registered':registered})
8686

8787
def user_login(request):
8888

0 commit comments

Comments
 (0)