Jakub Nowak
Jakub Nowak
I'm partly sure I'm in since I might have more time next month, gonna be sure soon. I'll be happy to help you with the project since I use it...
Yes, I'm still here, what's up? On Jun 29, 2017 10:16 PM, "iamhssingh" wrote: > You all are still alive, right? @manosim > @heyyeah @diego351 > @RaitoBezarius > > >...
Allow me to show you this one:
Well, I didn't use React to build my site, i used what was available out of the box, like here: https://elements-demo.stoplight.io/#/operations/get-todos . I don't see search function anywhere.
I do agree that default empty fields can be improved at least by inferring on the model field name as @Ambitiont109 suggests. Also model name and field type can be...
That would be awesome!
Gents, there's more that I think can be done. ``` class Transmission(models.Model): stations = models.ManyToManyField("Station", through="StationTransmission") sport = models.ForeignKey("Sport", on_delete=models.PROTECT, null=True, related_name="transmissions") at = models.DateTimeField(db_index=True, null=False) class Sport(models.Model): type =...
@rchiodo yes. The best django integration out there so far I think. I made a switch from pycharm so would like to help to surpass it :)
``` class Transmission(models.Model): stations = models.ManyToManyField("Station", through="StationTransmission") sport = models.ForeignKey("Sport", on_delete=models.PROTECT, null=True, related_name="transmissions") at = models.DateTimeField(db_index=True, null=False) class Sport(models.Model): type = models.TextField(choices=SportType.choices(), db_index=True, default=None) class StationTransmission(BaseMixin): transmission = models.ForeignKey("Transmission", related_name="station_transmissions",...
@rchiodo Hi there. Can I ask if there's any progress on this? Also, changing name of this issue to "support django orm autocompletion" might be good idea. Thanks!