In views.py
return render_to_response("notification/notice.html", {
"notices": notices,
"notice_types": notice_types,
"notice_settings": notice_settings,
}, context_instance=RequestContext(request))
but the name of the template is notice.html
Or am I missing something?
In views.py
return render_to_response("notification/notice.html", { "notices": notices, "notice_types": notice_types, "notice_settings": notice_settings, }, context_instance=RequestContext(request))but the name of the template is notice.html
Or am I missing something?