You need to add the get method this:
def get(self, request, *args, **kwargs):
"""
Handles GET request and returns HTTP response.
"""
context = self.get_context_data(**kwargs)
#data: dic, array, etc.
values = [1,2,3,4,5]
# add the data in the context
context["values"] = values
return self.render_to_response(context)
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/afe2127d-4b05-4584-bbb8-92a3435d78ad%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment