1

我正在使用 django-flatpages 允许管理员从管理员维护/自定义网站主页。

所以他将能够通过管理端添加、编辑和删除主页 div 内容。

但请参阅以下 div 的输出。

从管理员端添加的实际内容:

{%if user.is_authenticated %}
<h2>Welcome Back!</h2>
<div class="home-since-last">
    <div class="member-photo">
        <a href="/person/{{user.username}}"><img src="{{STATIC_URL}}{{user.get_profile.profile_image}}" alt="{{user.username}}" /></a>
    </div>
    <p><strong>Since your last visit:</strong></p>
    <ul>
    <li>+{{today_supporter_count}} supporter{{today_supporter_count|pluralize}}</li>
    <li>+{{today_comment_count}} comment{{today_comment_count|pluralize}}</li>
    <li>+{{today_adoption_count}} adoption{{today_adoption_count|pluralize}}</li>
    </ul>
    <p><a href="/you">Go to your profile &raquo;</a></p>
</div>
{% endif %)

输出 :

Welcome Back!
{{user.username}}

Since your last visit:

    +{{today_supporter_count}} supporter{{today_supporter_count|pluralize}}
    +{{today_comment_count}} comment{{today_comment_count|pluralize}}
    +{{today_adoption_count}} adoption{{today_adoption_count|pluralize}}

Go to your profile »

预期的:

Welcome Back!
bhushan vaiude [Image of user]

Since your last visit:

    +12 supporters
    +4 comments
    +0 adoptions

Go to your profile »

作为参考。对于 PHP,我想要一些类似include('abc.php');这样的abc.php文件可以访问父文件或容器文件的参数。

4

1 回答 1

1

可能你应该看看django-dbtemplates:编写你自己的视图,让管理员从管理员那里更改模板。

于 2012-12-05T11:20:28.313 回答