Django 1.10无法变量进入上下文

时间:2017-02-13 20:25:03

标签: python django django-templates django-views

我在django网站上工作(我的第一个),我试图在上下文中添加一个表单。我无法在模板中看到变量,所以我简化为字符串变量,但仍然没有结果。我不清楚我做错了什么,所以我希望得到一些帮助。

以下是观点:

from django.shortcuts import  render
from django.http import  HttpResponse
from django.template.context import RequestContext

from forms import LoginForm

# Create your views here.

def index(request):
    return HttpResponse("Index page for Chefables portal")

def login(request):

    lFormContext = RequestContext(request,{'mystring' : 'mystring'})
    return render(request, 'login.html',  lFormContext )

以及模板:

{% extends 'base.html' %}
{% load i18n %}
{% load debug_tags %}


{% block container %}
    <div class="content">

        {% variables %}

        {% if form.errors %}
            <div class="alert alert-danger">
                <p><strong>{% trans "Oh snap!" %}</strong> {% trans "Please enter a correct username and password. Note that both fields are case-sensitive." %}</p>
            </div>
        {% endif %}
        <form action="{% url 'login' %}" method="post" class="form-horizontal" role="form">{% csrf_token %}
            <legend><span class="col-sm-offset-1">{% trans 'Log in' %}</span></legend>
            {% for field in form.fields %}
                <p>iterating over form.fields </p>
                {% include 'registration/form_field.html' %}
            {% endfor %}
            <div class="form-group">
                <div class="col-sm-offset-2 col-sm-10">
                  <button type="submit" class="btn btn-default">{% trans 'Log in' %}</button>
                  &nbsp;<button type="reset" class="btn">{% trans 'Cancel' %}</button>
                </div>
            </div>
        </form>
        <p><a href="{% url 'resetPassword' %}">{% trans "Reset my password" %}</a></p>
        <script type="text/javascript">
            $(function(){
                $(".alert-message").alert();
                $('#mainForm').submit(function(){
                    $('#submit').button('loading');
                })
            });
            document.forms[1].elements[2].focus();
        </script>
    </div>
{% endblock %}

我希望{%variables%}的输出显示一些对“mystring”的引用。我在视图中添加了,但没有添加额外的变量。我有点需要弄清楚这一点。

这里是{%variables%}

的输出
  

[&#39; DEFAULT_MESSAGE_LEVELS&#39;,&#39; False&#39;,&#39;无&#39;,&#39; True&#39;&#39; block&#39;,   你有&#39; csrf_token&#39;,&#39;邮件&#39;,&#39; perms&#39;,你&#39;请&#39;,&#39;用户&#39;,u&#39;查看& #39]

我不确定到底出了什么问题 - 我正确地添加了上下文字典。有没有我可能会失踪的环境?这看起来很基本。

这是我的模板设置:

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [BASE_DIR + '/portal/templates/portal'],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

非常感谢任何帮助或建议。感谢。

1 个答案:

答案 0 :(得分:2)

render接受一个dict,而不是RequestContext;它会生成RequestContext本身。

def login(request):
    lFormContext = {'mystring' : 'mystring'}
    return render(request, 'login.html',  lFormContext)