鍍金池/ 問答/Python/ Django2注冊(cè)頁(yè)面`help_text`不能隱藏

Django2注冊(cè)頁(yè)面`help_text`不能隱藏

環(huán)境:
python3.6 Django2.0

我的注冊(cè)模塊view視圖

class RegisterView(CreateView):
    template_name = 'user/register.html'
    form_class = UserCreationForm

template

{% extends "base.html" %}

{% block main %}
  <h1>Register</h1>
  <form method="post">
    {{ form.as_p }}
    {% csrf_token %}
    <button
        type="submit"
        class="btn btn-primary">
      Register
    </button>
  </form>
{% endblock %}

圖片描述

每一個(gè)表單后都有提示,請(qǐng)問如何隱藏?

回答
編輯回答
不討囍

你的static-dir配置是不是有問題,貌似css、js都沒有加載吧。
否則,應(yīng)該能自動(dòng)影藏的。

2018年5月13日 07:06