Re: Feeding a stored procedure (MySQL) into Django_Tables2 table

2019-12-24 Thread Integr@te System
Hi Issuer, Dump data field from model to json obj. And combines them as a dictionary. On Wed, Dec 25, 2019, 11:19 sum abiut wrote: > Can you show us your models. > > On Wed, 25 Dec 2019, 08:03 Gregory Vaks, wrote: > >> Hello all, >> >> I am using Django-Tables2 for front-end in my app as it

Re: Integrate React with Django

2019-12-24 Thread Gil Obradors
Yes! The advantatge is a frontend component bases programed. Very interesting for a great UI interface It requires time I started with this https://www.youtube.com/watch?v=Uyei2iDA4Hs And next, I countinued with this Software Enginner _> https://codewithmosh.com Good luck Missatge de Santhos

Integrate React with Django

2019-12-24 Thread Santhosh sridhar
Is it possible to integrate React Js framework with Django? What is the advantage of using react over Ajax with Django? Any example would help me. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receivin

Re: Intern

2019-12-24 Thread Dvs Khamele
Hi Paras, To apply for this internship and to make sure Things are clear There are a few points you may need to know:- 1) This is an unpaid internship 2) You will be assigned tasks and how to complete them, You will need to report each day end 3) As you get the task you may take whale responsibilit

Re: Intern

2019-12-24 Thread Dvs Khamele
Hi Prathmesh, It's in Indore. But you may apply remotely also or via coming to the office both. On Tue, 24 Dec 2019 at 22:31, prathamesh doshi wrote: > Hey hi please may i know location of company > > On Tue, Dec 24, 2019 at 8:12 PM Dvs Khamele wrote: > >> Hi, all Each year, >> We at Pythonmate

Re: Intern

2019-12-24 Thread Dvs Khamele
No issues we provide internships to college students as well as non-college students. As long as you have some basic knowledge already. To apply for this internship and to make sure Things are clear There are a few points you may need to know:- 1) This is an unpaid internship 2) You will be assigne

Hii floks

2019-12-24 Thread sachinbg sachin
I want only user registration and login API stuff in restframework I am not able to do login by login(request,user) Any documents are git links regarding whole user things Thanks in advance -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsu

Re: Feeding a stored procedure (MySQL) into Django_Tables2 table

2019-12-24 Thread sum abiut
Can you show us your models. On Wed, 25 Dec 2019, 08:03 Gregory Vaks, wrote: > Hello all, > > I am using Django-Tables2 for front-end in my app as it nicely fits my > requirement for displaying information. > > My issue is that I need to display information from multiple models (MySQL > tables)

Re: Intern

2019-12-24 Thread Paras Jain
Hi, i am interested for internship Thanks paras On Tue, Dec 24, 2019 at 8:12 PM Dvs Khamele wrote: > Hi, all Each year, > We at Pythonmate provides 3 months - 6-month internships starting January. > It works as in office as well as remote. > Reply to me for more details. > Thanks > > On Tue, 24

Feeding a stored procedure (MySQL) into Django_Tables2 table

2019-12-24 Thread Gregory Vaks
Hello all, I am using Django-Tables2 for front-end in my app as it nicely fits my requirement for displaying information. My issue is that I need to display information from multiple models (MySQL tables) in one screen/template. There is a stored procedure that gets all the information that I

Re: Intern

2019-12-24 Thread Destiny Junior
How can I apply for this internship? With no college degree buh programming experience On Tue, Dec 24, 2019, 3:42 PM Dvs Khamele wrote: > Hi, all Each year, > We at Pythonmate provides 3 months - 6-month internships starting January. > It works as in office as well as remote. > Reply to me for m

Re: Intern

2019-12-24 Thread prathamesh doshi
Hey hi please may i know location of company On Tue, Dec 24, 2019 at 8:12 PM Dvs Khamele wrote: > Hi, all Each year, > We at Pythonmate provides 3 months - 6-month internships starting January. > It works as in office as well as remote. > Reply to me for more details. > Thanks > > On Tue, 24 Dec

Re: send data to database

2019-12-24 Thread Kevin Dublin
Hi Leo, You'll want to use a model form in your forms.py, create an instance of it in the views.py to pass 'form' as a context variable, and then just let the model form render in the html template using {{ form }}. Check the docs: https://docs.djangoproject.com/en/3.0/topics/forms/modelforms/ T

Re: Intern

2019-12-24 Thread Dvs Khamele
Hi, all Each year, We at Pythonmate provides 3 months - 6-month internships starting January. It works as in office as well as remote. Reply to me for more details. Thanks On Tue, 24 Dec 2019 at 18:55, Sarvesh singh wrote: > Please, suggest me any intern or job opportunity. > I completed my b.te

send data to database

2019-12-24 Thread Leó Horváth
Hi guys, I want to create a form with radio buttons that sends data to a specific database field. How can I do it? My models.py looks like this: import datetime from django.db import models from django.utils import timezone # Create your models here. class Name(models.Model): user_name = m

Re: Decisions on selcting ChoiceField

2019-12-24 Thread shree hari
can you please show me the implementation with respect to my code ? On Tuesday, December 24, 2019 at 7:03:23 PM UTC+5:30, Nitin Kalmaste wrote: > > You can do request.get[field name] > And make your conditions in views > > On Tue 24 Dec, 2019, 6:50 PM shree hari, > wrote: > >> # views.py >> def p

Re: Decisions on selcting ChoiceField

2019-12-24 Thread shree hari
Thank you. Will give it a try. On Tuesday, December 24, 2019 at 7:03:23 PM UTC+5:30, Nitin Kalmaste wrote: > > You can do request.get[field name] > And make your conditions in views > > On Tue 24 Dec, 2019, 6:50 PM shree hari, > wrote: > >> # views.py >> def price_choices(request): >> if requ

Re: Decisions on selcting ChoiceField

2019-12-24 Thread shree hari
Thank you. Will give it a try. On Tuesday, December 24, 2019 at 7:03:23 PM UTC+5:30, Nitin Kalmaste wrote: > > You can do request.get[field name] > And make your conditions in views > > On Tue 24 Dec, 2019, 6:50 PM shree hari, > wrote: > >> # views.py >> def price_choices(request): >> if requ

Re: Decisions on selcting ChoiceField

2019-12-24 Thread Nitin Kalmaste
You can do request.get[field name] And make your conditions in views On Tue 24 Dec, 2019, 6:50 PM shree hari, wrote: > # views.py > def price_choices(request): > if request.method == "GET": > context = {} > context['form'] = pricechoice() > return render( request, "te

Re: Intern

2019-12-24 Thread Sarvesh singh
Please, suggest me any intern or job opportunity. I completed my b.tech in cse. I have good knowledge of Django. On Tue, Dec 24, 2019, 6:50 PM Arjun Baidya wrote: > I want to work in office intern. > If possible then send me the e-mail I will send my cv. > > > On Monday, December 23, 2019 at 11:

Decisions on selcting ChoiceField

2019-12-24 Thread shree hari
# views.py def price_choices(request): if request.method == "GET": context = {} context['form'] = pricechoice() return render( request, "template_form.html", context) # forms.py price_CHOICES =( ("1", "25"), ("2", "50"), ("3", "100"), ("4", "200"),

Re: Intern

2019-12-24 Thread Arjun Baidya
I want to work in office intern. If possible then send me the e-mail I will send my cv. On Monday, December 23, 2019 at 11:56:31 PM UTC+6, Marcelo Juan Saciloto wrote: > > Hello how are you doing? > > I have some friends that work on Waves labs. If you want I can share your > vc with them > >

Re:

2019-12-24 Thread V.K. Vanama
The following steps are useful on Microsoft Windows Platform, I am using Microsoft Windows 10 64-bit Step 1: Create a django project either through command line interface or through any IDE such as JetBrains PyCharm, Atom, etc... Step 2: Observe the sub-folder name inside the django project cont

Re: How to work in Visual Studio Code with Virtual Environment & Django ?

2019-12-24 Thread Mahmoud Abbas
I love to use sublime 3 with django ,but if u want to use vscode with it, I suggested u to see this course: https://youtu.be/e1IyzVyrLSU On Tue, Dec 24, 2019, 12:42 Parvez Khan Pathan wrote: > *Afternoon Folks,* > > Hello I am a student & DJango Beginner. As a student i prefer Atom Text > Ed

Re: How to work in Visual Studio Code with Virtual Environment & Django ?

2019-12-24 Thread Karan Mittal
What errors. Maybe you have not installed venv package in your machine. Install it by pip. Search this on Internet. On Tue, 24 Dec, 2019, 4:47 PM Salim Kachemela, wrote: > Vscode has an integrated terminal which you can actually use just like > would use in your built in terminal or cmd. > > On

Re: How to work in Visual Studio Code with Virtual Environment & Django ?

2019-12-24 Thread Salim Kachemela
Vscode has an integrated terminal which you can actually use just like would use in your built in terminal or cmd. On Tue, 24 Dec 2019, 13:31 Karan Mittal, wrote: > Nothing Complex in that. You simply install some of the packages for > vscode. We have django package for vs code. > Also you can s

Re: How to work in Visual Studio Code with Virtual Environment & Django ?

2019-12-24 Thread Parvez Khan Pathan
sir i try to create venv but got errors. Even i prefer VS Code Documentation. But not work my case. On Tue, 24 Dec 2019, 4:01 pm Karan Mittal, wrote: > Nothing Complex in that. You simply install some of the packages for > vscode. We have django package for vs code. > Also you can simply enter

Re: Regarding API Creation

2019-12-24 Thread Integr@te System
Hi friend, My bend: Tackle perf gather container for functional api. Choose arch as less or immutate model. Of course to do drf cbv in this case. Thank for sharing. On Tue, Dec 24, 2019, 03:28 Anonymous Anon wrote: > It really depends Architecture vs Performance This is what I > usua

Re: How to work in Visual Studio Code with Virtual Environment & Django ?

2019-12-24 Thread Karan Mittal
Nothing Complex in that. You simply install some of the packages for vscode. We have django package for vs code. Also you can simply enter the virtual environment via terminal provided by vscode. Regards, Karan Mittal On Tue, 24 Dec, 2019, 3:12 PM Parvez Khan Pathan, wrote: > *Afternoon Folks,*

How to work in Visual Studio Code with Virtual Environment & Django ?

2019-12-24 Thread Parvez Khan Pathan
*Afternoon Folks,* Hello I am a student & DJango Beginner. As a student i prefer Atom Text Editor & miniconda for virtual environment. But i see lots of tutorial over YouTube that Use Visual Studio Code I try to jump from Atom Text Editor to VS Code but i cant figure out to set Virtual Environ

Re: Google Summer of code 2020

2019-12-24 Thread Integr@te System
Hi, Just ask Google for this event. Happy code. On Tue, Dec 24, 2019, 11:32 Karan Mittal wrote: > Actually I had the same query regarding GSoC. Please help > > Regards, > Karan Mittal > 3rd yr Student in Btech CSE, > Acropolis Institute of Technology and Research, Indore > > On Mon, 23 Dec, 2