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 Test Time Django TDD

Copy and paste your models, views, and performer template from Workspaces into the correct files below.

Only one test is failing! What is causing my test to fail

songs/models.py
from django.db import models

# Write your models here

class Performer(models.Model):
    name = models.CharField(max_length=255)

    def __str__(self):
        return self.name

class Song(models.Model):

    title = models.CharField(max_length=255)
    length = models.IntegerField(default=0)
    artist = models.TextField()
    performer = models.TextField()

    def __str__(self):
        return  self.artist+self.title
songs/views.py
from django.shortcuts import get_object_or_404, render
from .models import Song, Performer
from django.http import HttpResponse


def performer_detail(request, pk):
    performer= get_object_or_404(Performer, pk=pk)
    return render(request, 'songs/performer_detail.html', {'performer': performer})




def song_detail(request, pk): 
    song= get_object_or_404(Song, pk=pk)
    return render(request, 'songs/song_detail.html', {'song': song})



def song_list(request):
    songs = Song.Objects.all()
    return render(request, 'songs/song_list.html', {'songs': songs})
songs/templates/songs/performer_detail.html
{% extends 'base.html' %}

{% block title %}{{ performer.name }}{% endblock %}

{% block content %}
<h2>{{ performer.name }}</h2>
{% endblock %}

1 Answer

Kenneth Love
STAFF
Kenneth Love
Treehouse Guest Teacher

You don't have the song title in the performer detail page. I'm not sure how you're passing the tests in the Workspace.