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

urlpattern error

from django.contrib import admin
from django.urls import path
from Django_Tutorial import views

urlpatterns = [
    path('courses/', courses.urls),
    path('admin/', admin.site.urls),
    path('', views.hello_world),

getting error with courses is not defined even when imported. Im using pycharm

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


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

[MOD: added ```python formating -cf]

1 Answer

Kevin S
seal-mask
.a{fill-rule:evenodd;}techdegree
Kevin S
Data Analysis Techdegree Student 15,862 Points

I think you need to change str(courses) to str(course) because courses references the entire list. However, you want to make each individual course a string.