Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Django Basics Model Administration First App View

Aldo Rivadeneira
Aldo Rivadeneira
3,241 Points

first-app-view What cloud be the main reason to get an empty list when i load the localhost:8000/courses/ url ?

Courses *1) i check the models.py , in the exercise i load data and fetch the data from it.

*2) my view looks like this

from django.http import HttpResponse
from django.shortcuts import render

from .models import Course

# Create your views here.
def course_list(request):
    courses = Course.objects.all()
    output = ', '.join([str(courses) for course in courses])
    return HttpResponse(output)

3) The url file :

from django.conf.urls import url

from . import views

urlpatterns = [
    url(r'^$', views.course_list),
]

So when i load the page : http://localhost:8000/courses/

i got the following :

[, , ], [, , ], [, , ]

1 Answer