動態表單我在models.py建築物的模型
class TProfiles(models.Model):
id = models.IntegerField(primary_key=True) # AutoField?
first_name = models.CharField(max_length=45, blank=True)
surname = models.CharField(max_length=45, blank=True)
email = models.CharField(max_length=45, blank=True)
class Meta:
managed = False
db_table = 'profiles'
而且在我的模板下面的模型我想基於模型的屬性,產生形狀。有沒有動態循環它們的方法?
register.html在models.py
附加
{% block content %}
<form enctype="multipart/form-data" action="" method="post">
<!-- Loop through model attributes here -->
</form>
{% endblock %}
創造一個 '的ModelForm',並把它傳遞給模板。 – 2014-10-19 13:36:41