当您访问我的网站austinhum.webfactional.com时,它会转到管理控制台,并显示“您无权编辑任何内容”的消息。我应该提一下,我的基本模板是管理控制台的基本模板,因为我需要在页面中合并管理工具。但是,根页面的url是一个direct_to_template调用
url(r'^$', direct_to_template,{'template':'index.html'}),
我的index.html模板(main.html扩展base.html):
{% extends "main.html" %}
{% block content %}
<div class="homePage">
<div><img id="splashImage" src="{{ STATIC_URL }}images/BBBSL2.jpg"</div>
</div>
<div class="clear"></div>
{% endblock %}
我有其他页面使用direct_to_template没有任何问题。在我的本地机器上,主页显示没有问题。这是某种我不知道的apache设置吗?提前致谢
答案 0 :(得分:1)
原来问题是我将admin中的'index.html'文件复制到我的项目中,这与我自己的'index.html'相矛盾