apache 上的 django label 标签
我在继承自我自己的用户模型的表单上进行表单渲染时遇到问题。 当在dev中进行渲染时,一切都OK了。 但是在prod中,使用apache和mod_python,不会生成表单!
这是我的模型和模型表单:
class ClientUser(models.Model):
company = models.CharField(_("Société"), max_length=255)
email = models.EmailField(_("Email"), max_length=255, unique=True)
phone = models.CharField(_("Numéro de téléphone"),max_length=255,
null=True, blank=True)
country = CountryField(_('Pays'))
class ClientAccountForm(forms.ModelForm):
class Meta:
model = ClientUser
在我的模板中,我将表单呈现为表格:
<form name="contact_form" method="post" id="contact_form">
<table>
{{form.as_table}}
</table>
<input type="submit" value="{% trans "Envoyer" %}">
</form>
感谢您的帮助
I've a problem with form rendering on a form which inherits from my own User model.
When the rendering is made in dev, everything is OK.
But in prod, with apache and mod_python, the form is not generated!
Here is my model and model form:
class ClientUser(models.Model):
company = models.CharField(_("Société"), max_length=255)
email = models.EmailField(_("Email"), max_length=255, unique=True)
phone = models.CharField(_("Numéro de téléphone"),max_length=255,
null=True, blank=True)
country = CountryField(_('Pays'))
class ClientAccountForm(forms.ModelForm):
class Meta:
model = ClientUser
In my template, I render the form as a table :
<form name="contact_form" method="post" id="contact_form">
<table>
{{form.as_table}}
</table>
<input type="submit" value="{% trans "Envoyer" %}">
</form>
Thanks for your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论