私はdjango-flatpagesを使用して、管理者が管理者からWebサイトのホームページを維持/カスタマイズできるようにしています。
したがって、彼は管理者側からホームページの 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