0

我有一个迷你框,当悬停以显示个人资料信息时会弹出(经常被隐藏)。由于模板包括:

{% for i in leftbar_network|slice:":12" %}
     {% include "includes/mini_profile.html" %} 
{% endfor %}

但我想添加一些条件并提取其他信息……例如:检查它们是否可以发送消息。拉那个特定的个人资料朋友数.. yadda yadda。我有一个应该可以工作的网址和视图。但似乎它们被完全忽略了。

模板:

<div class="mini-profile">
    <div class="mini-profile-top">
        <a href="/profile/{{i.get_type|lower}}/{{ i.user.username }}/" data-title="{{ i.user.get_full_name }}" data-content="{{i.get_type}}">
            <img class="img-frame" width="90" height="90" src="{% if i.avatar %}{% thumbnail i.avatar 120x120 crop %}{% else %}{{ DEFAULT_AVATAR }}{% endif %}" alt="{{ i.user.get_full_name }}" />
        </a>
        <a href="/profile/{{i.get_type|lower}}/{{ i.user.username }}/" data-title="{{ i.user.get_full_name }}" data-content="{{i.get_type}}">{{ i.user.get_full_name }}</a>
        <div>{{ i.get_type }}</div>
    </div>
    <div class="mini-profile-bottom">
        {% if can_message %}
        <form method="GET" action="/messages/compose/{{ i.get_type|lower }}/{{ i.user.username }}/">
            <button class="btn btn-margin" type="submit">
                <i class="icon-envelope"></i> Message
            </button>
        </form>
        {% else %}
        <button class="btn btn-margin tooltip-bottom disabled" title="You need to be connected to message {{profile.user.get_full_name}}" type="submit">
            <i class="icon-envelope"></i> Message
        </button>
        {% endif %}
    </div>
</div>

有什么方法可以使用 {% include %} 并围绕它生成一个视图?还是我走错了路?如果是这样,我应该如何生成一个带有平滑弹出视图和url的迷你框?

示例:Google 聊天,当鼠标悬停在用户上时。

提前感谢您的建议。

4

1 回答 1

3

我想添加一些条件并提取其他信息……例如:检查它们是否可以发送消息。拉出特定的个人资料好友数

听起来您正在寻找更具体的模板标签,包含标签。

因此,您可以将 (python/view) 逻辑放入您的标签中,并呈现与您的包含类似的适当 html。

于 2012-04-12T20:07:14.617 回答