我有一个现有的django应用程序,我需要集成django-cms。 Django-cms将主要用于为应用程序创建帮助文档。我已经设置了django-cms来使用我现有的数据库,以保持用户和身份验证的一致性。
理想情况下,在帮助页面中,我需要从现有应用程序中获取客户特定信息,并为文档团队提供编辑功能。
以下是我写的示例视图:
def view_help(request, company):
try:
c = Company.objects.get(id=company)
except:
return render_to_response('help.html', {'msg':'No Such company'})
return render_to_response('help.html', {'company':c, 'data':c.data})
对应的模板help.html:
{% load cms_tags %}
{% load custom_tags %}
<!doctype html>
<head>
<title>{{company}}</title>
{% plugins_media %}
</head>
<body>
{% placeholder "main" %}
{% if msg %}
{{msg}}
{% else %}
Here is company specific data: <br/>
{{ data }}
{% endif %}
</body>
</html>
这为我提供了我需要的公司特定信息,但没有给我cms插件。
这里的任何帮助将不胜感激。 感谢。
---编辑--- 将已编辑的部分移至新问题