如何将上下文数据传递给sylesheet' src'和图像' src'属性?

时间:2015-06-25 17:19:21

标签: python django template-context

我有一个_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)

目录结构: directory structure

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">

2 个答案:

答案 0 :(得分:1)

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

{% static cust_header %}

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

答案 1 :(得分: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和标题图像:

sample web page with custom stylesheet and header image