Subject:
Re: Custom attributes in django forms thanks!gnchyOn 26 Nov 2018 11:22, "Yavin
Aalto Arba" wrote:Hi Gordon, Try starting with the
documentation here and if u have any questions please let us
know:https://docs.djangoproject.com/en/2.1/ref/forms/widgets/On Sun, Nov 25,
2018, 11:09
thanks!
gnchy
On 26 Nov 2018 11:22, "Yavin Aalto Arba" wrote:
> Hi Gordon,
>
> Try starting with the documentation here and if u have any questions
> please let us know:
>
> https://docs.djangoproject.com/en/2.1/ref/forms/widgets/
>
> On Sun, Nov 25, 2018, 11:09 PM gordon nchy
>> hello everyon
Hi Gordon,
Try starting with the documentation here and if u have any questions please
let us know:
https://docs.djangoproject.com/en/2.1/ref/forms/widgets/
On Sun, Nov 25, 2018, 11:09 PM gordon nchy hello everyone
> i'm facing a challenge on how to add custom attributes to django login
> f
hello everyone
i'm facing a challenge on how to add custom attributes to django login
form. i used the LoginView from django.contrib.auth.views to generate a
login form, but i really need help on how to add custom attributes maybe
like using widgets but i dont know how to do it..i'll appreci
Hi thanks for quick response.
I was thinking more about real custom attributes. Be able to define a
string, or choice filed from admin. And after all create query and/or
render form on it.
Application that we are working at requires different attributes on
objects from client to client.
We were lo
Hi Sebastian,
I suppose you are trying to do something like this?
class CustomAttributes(models.Model):
name = models.CharField(max_length=30)
value = models.CharField(max_length=50)
class ObjectWithCustom(models.Model):
name = models.CharField(max_length=30)
attributes = models.
Hi
Maybe im looking in wrong places or maybe there is no application to
cover functionality of carrying custom/admin defined attributes, or
maybe it isn't even possible.
Use Case could looks like
Defining models
from customr_attr import models
class ObjectWithCustom(models.Model):
name = m
7 matches
Mail list logo