5
votes
1answer
5k views

django 'str' object is not callable

I have a problem creating an URL view in django. It gives me this error (ferrol is a Space object): TypeError at /spaces/ferrol/ 'str' object is not callable Request Method: GET Request URL: ...
3
votes
2answers
127 views

How does django's View class work

I'm diving into Django's generic views, figuring out how they return a simple HttpResponse object, like a simple view function would. I have written a simple project for testing, and I added some ...