Thomas Guettler wrote:
> Stan Dyck schrieb:
>
>> I'm converting a simple database-backed web form to Django. Each form
>> submit inserts a row into a database.
>>
>>
>>
>
> Hi,
>
> you can use yourmodel.objects.get_or_create(...)
> To force the uniqueness on database level you should u
Stan Dyck schrieb:
> I'm converting a simple database-backed web form to Django. Each form
> submit inserts a row into a database.
>
>
Hi,
you can use yourmodel.objects.get_or_create(...)
To force the uniqueness on database level you should use unique_together.
> To avoid multiple posts ins
2 matches
Mail list logo