﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
20837	comments app template tags don't resolve context variables	James Addison	nobody	"From the django comments app docs, you're able to specify the app.model and object_pk if you don't have an object in the template context, like this:
 
{% get_comment_list for blog.post object_pk as comment_list %}

However, I have a scenario where I want to pass in the app.model value in a context variable. eg. say I have a variable called `object_content_type` containing 'blog.post', this errors out:

{% get_comment_list for object_content_type object_pk as comment_list %}

as does this:

{% get_comment_list for 'blog.post' object_pk as comment_list %}

Error info:

TemplateSyntaxError at /my-comments-page/
Third argument in u'get_comment_list' must be in the format 'app.model'

Near as I can figure it, the comments app template tags don't seem to attempt variable resolution of the token. Shouldn't it?"	Bug	closed	contrib.comments	1.5	Normal	invalid			Unreviewed	0	0	0	0	0	0
