我正在使用 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 »</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
文件可以访问父文件或容器文件的参数。