summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorankitjavalkar2017-06-28 14:29:48 +0530
committerGitHub2017-06-28 14:29:48 +0530
commitd5f0907fc1fbc464968f99ea53d3ff0042a0a9ea (patch)
treea3dc26f7cfc4c5073b88a055c7cbcb2e290c3584
parent43ed4e99ba259b089d6ed413aa2de2f164f524e7 (diff)
downloadlearn_django-d5f0907fc1fbc464968f99ea53d3ff0042a0a9ea.tar.gz
learn_django-d5f0907fc1fbc464968f99ea53d3ff0042a0a9ea.tar.bz2
learn_django-d5f0907fc1fbc464968f99ea53d3ff0042a0a9ea.zip
Update slides to include more info
-rw-r--r--tutorial_7_creating_blog_list_interface/slides.md37
1 files changed, 32 insertions, 5 deletions
diff --git a/tutorial_7_creating_blog_list_interface/slides.md b/tutorial_7_creating_blog_list_interface/slides.md
index 561a57c..243f65e 100644
--- a/tutorial_7_creating_blog_list_interface/slides.md
+++ b/tutorial_7_creating_blog_list_interface/slides.md
@@ -37,13 +37,13 @@ Slide 5:
**Create a new View**
-- Modify the blog/views.py and add a new view to display the Blog List of a particular user
+- Modify the blog/views.py, modify the get_blogs view to display the Blog List of a particular user in a template
def get_blogs(request, user):
user_object = User.object.get(username=user)
blogs = Blog.objects.filter(creator=user_object)
context = {'blogs': blogs}
- return render(request, 'myapp/index.html', context)
+ return render(request, 'blog/index.html', context)
Slide 6:
---------------------
@@ -71,7 +71,7 @@ Slide 6:
Slide 7:
---------------------
-** Modify the URLs **
+**Modify the URLs**
- Modify the urls located in the ```myproject``` folder
@@ -82,7 +82,7 @@ Slide 7:
urlpatterns = [
url(r'^admin/', admin.site.urls),
- url(r'^blog/$', blog.urls) # Add this line
+ url(r'^blog/$', blog.urls) # Change this line
]
- Modify the urls located in the ```blogs``` folder
@@ -92,6 +92,33 @@ Slide 7:
from blog import urls
urlpatterns = [
- url(r'^(?P<username>\w+)/list/$', views.get_blogs, name='blogs') # Add this line
+ url(r'^(?P<username>\w+)/list/$', views.get_blogs, name='blogs')
]
+
+Slide 8
+-----------------------
+**Test the new view**
+
+- Activate the virtual environment
+- Run the Django test server using the command *python manage.py runserver*
+- Open the web browser and go to http://127.0.0.1:8000/blog/<username>/list
+ - Use the username created in Tutorial 3
+
+Demonstration
+-----------------------
+
+*Note to Narrator: Demonstrate the new view in the browser to the viewer*
+
+Slide 9
+-----------------------
+
+**Add a view to Display Articles**
+
+- Modify the blog/views.py and add a new view to display a list of all the articles of a blog
+
+ def get_blogs(request, user):
+ user_object = User.object.get(username=user)
+ blogs = Blog.objects.filter(creator=user_object)
+ context = {'blogs': blogs}
+ return render(request, 'blog/index.html', context)