Error while uplaoding the models data from excel through admin page

2019-11-09 Thread Mohan Goud
I have to import the data into models from excel sheet from admin site and the code is models.py class Exam(models.Model): Examname = models.CharField(null=False, blank=False, max_length=255) class Meta: unique_together = ["Examname"] def *str*(self): return self.Examname admin.py

Re: django+rasperrypi_sensor

2019-10-15 Thread Mohan Goud
Follow the case studies in the text book - Internet of things by Vijay madisetty text book On Tue, 15 Oct 2019, 23:21 佟博, <247687...@qq.com> wrote: > I need to build a website with django and pass the sensor data on > rasperrypi to the webpage in real time. What should I do? > I am a django

Re: Hello From Nigeria

2019-03-22 Thread Mohan Goud
9640855205 On Fri, Mar 22, 2019 at 12:32 PM VeeraNagaRaja Sankar wrote: > me too guys , > add me > 9985864383 > > Best Regards, > Inti VeeraNagaRaja Sankar,M.Tech(IT) > M: 9985864383 > intisank...@gmail.com > https://about.me/veeranagarajasankar > > > On Thu, Mar 21, 2019 at 9:07 PM

Re: Request & Response >> Device send HTTP request to web server

2019-03-18 Thread Mohan Goud
Unit 9 of IoT by Vijay madisetti is completely related to that On Tue 19 Mar, 2019, 2:43 AM Sabuhi Shukurov Hello! > > I need your help and assistance in my project. Currently we are developing > project on the device, which is on arduino written on C low level, it is > really difficult to

Re: filtering and searching help - regarding

2019-02-03 Thread Mohan Goud
yes render response but i have to store the sorted version in some other model by creating it dynamically. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: filtering and searching help - regarding

2019-02-03 Thread Mohan Goud
).order_by("name") > > On Sun, 3 Feb, 2019, 7:32 PM Mohan Goud >> django >> >> >> >> On Sun, Feb 3, 2019 at 7:30 PM Birol Demirtaş >> wrote: >> >>> Django ? Or ? >>> >>> 3 Şub 2019 Paz, saat 16:59 tarihinde Mohan

Re: filtering and searching help - regarding

2019-02-03 Thread Mohan Goud
django On Sun, Feb 3, 2019 at 7:30 PM Birol Demirtaş wrote: > Django ? Or ? > > 3 Şub 2019 Paz, saat 16:59 tarihinde Mohan Goud > şunu yazdı: > >> >> >> students list is in database. I have to search based on section, >> department and year and sort th

filtering and searching help - regarding

2019-02-03 Thread Mohan Goud
students list is in database. I have to search based on section, department and year and sort them in ascending order. can any one help me on this through any video links or any other. -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: please i need assistance with mine css file .Mine base.html file failed to load my style.css.

2018-11-22 Thread Mohan Goud
If u r using pycharm free version. It doesn't support css files. kindly check that On Wed, Nov 21, 2018 at 10:34 PM Yavin Aalto Arba wrote: > It might help to create a link to the static file and then check the error > upon reaching the url. I also recommend using the django debugging tool >

How to do arthimetic operations on database values in django

2018-11-13 Thread Mohan Goud
I have Prof:AssociateProf:AssistantProf = x:y:z in database and I have to do these operations x/(x+y+z) : y/(x+y+z) : z/(x+y+z) in django. Can anyone help me on this and models.py is class Show(models.Model) :Total = models.IntegerField(default = 0)Prof = models.IntegerField(default =