1

我有一个_layout.html模板如下:

<!DOCTYPE html>
{% load staticfiles %}

<html lang="en">
    <head>
        {% block linkcss %}{% endblock %}
        <title>{% block title %}{% endblock %}</title>
        <script type="text/javascript" src="{% static 'scripts/jquery-2.1.3.min.js' %}"></script>
        {% block scripts %}{% endblock %}
    </head>
    <body>
        {% block head %}{% endblock %}
        <table class="page_content">
            <tr>
                <td>
                    <div id="content">
                        {% block content %}{% endblock %}
                    </div>
                </td>
            </tr>
        </table>
    </body>
</html>

该页面home.html通过以下内容扩展了上述内容:

{% extends "generic/_layout.html" %}
{% load staticfiles %}

{% block title %}{{ cust_title }}{% endblock %}
{% block linkcss %}<link rel="stylesheet" type="text/css" href="{% static '{{ cust_stylesheet }}' %}" />{% endblock %}

{% block scripts %}
<script type="text/javascript">
</script>
{% endblock %}

{% block head %}
<table class="head">
    <tr>
        <td class="center">
            <img src="{% static '{{ cust_header }}' %}">
        </td>
    </tr>
</table>
{% endblock %}

{% block content %}
<table class="content">
        <thead align="center">
            <tr>
                <th colspan="3" style="text-align: center">{{ cust_message }}</th>
            </tr>
        </thead>
        <tbody>

        </tbody>
    </table>
{% endblock %}

该视图是通用的,因为代码检查路径并获取上下文数据和页面......这是一个示例:

# customer configurations constants:
CUSTOMER_CONFIGS = {
    'samplewebpage': {
        'context': {
            'cust_title': "Sample Customer Page",
            'cust_stylesheet': "SampleWeb/style.css",
            'cust_header': "SampleWeb/sample_header.png",
            'cust_message': "Welcome to Sample Web Page"
        },
        'home': "SampleWebPage/home.html"
    },
}

# generic view:
def index(request):
    path = request.path.replace("/", "")

    context = CUSTOMER_CONFIGS[path]['context']
    page = CUSTOMER_CONFIGS[path]['home']

    return render(request, page, context)

目录结构: 目录结构

cust_title工作正常。那么如何以相同的方式传递cust_stylesheet位置和cust_header图像源呢?

实际渲染类似于以下内容:

<link rel="stylesheet" type="text/css" href="/static/%7B%7B%20cust_stylesheet%20%7D%7D" />  

<img src="/static/%7B%7B%20cust_header%20%7D%7D">
4

2 回答 2

1

正如@DanielRoseman 在评论中所说,您不能在其他标签内调用标签。但是可以使用变量。然后你可以试试这个:

{% static cust_header %}

那应该正确打印您的字符串。

于 2015-06-25T17:50:23.857 回答
0

注意:@Gocht 提供的方法更可取,因为它利用了 django 设置。我只是将这个答案作为另一种选择,尽管可能不太有利。

基于上面@DanielRoseman 的评论 - “你不能在其他标签内调用标签。” - 我更改了客户配置和依赖模板如下:

'samplewebpage': {
    'context': {
        'cust_title': "Sample Customer Page",
        'cust_stylesheet': "/static/SampleWeb/style.css",
        'cust_header': "/static/images/SampleWeb/sample_header.png",
        'cust_message': "Welcome to Sample Web Page"
    },
    'home': "SampleWebPage/home.html"
}

# template tags change  
<link rel="stylesheet" type="text/css" href="{{ cust_stylesheet }}" />  

<img src="{{ cust_header }}">  

基于这些更改,页面可以正确加载其特定的 style.css 和标题图像:

带有自定义样式表和标题图像的示例网页

于 2015-06-25T17:40:15.653 回答