django-dynamic-datatb
django-dynamic-datatb copied to clipboard
Django Dynamic Datatables - Open-Source Library | AppSeed
> Choices option is not working, you can check below: TRAINING_TYPE_CHOICES = ( (TRAINING, 'TRAINING'), (MATCH, 'MATCH'), (REGENERATION, 'REGENERATION'), (REHABILITATION, 'REHABILITATION'), (OTHER, 'OTHER'), ) training_type = models.PositiveSmallIntegerField(choices=TRAINING_TYPE_CHOICES, default=1, null=False, blank=False)...
> Suggested in [yTube](https://www.youtube.com/watch?v=LlcpVfvIbMU&lc=UgxChyJsZSGDxLtfeR54AaABAg) I would like to share feedback for further improvement: * Allow for "default" fields that need to be shown in the list view. In my situation,...
Using the model to build the database, I specified one of the fields: photo=models.ImageField(upload_to="images/", blank=True, null=True) but when adding a record, it is impossible to add a file or an...