Re: Tweak admin widget - FilteredSelectMultiple

2020-01-04 Thread Integr@te System
Hi Mike, As we look at selected_choice result from iterating v over value (line 428), option_value base on choice(line 438). so we can limit input parameter of value variable from this def(). Hope if heplful. On Sat, Jan 4, 2020, 11:00 Mike Dewhirst wrote: > In the Admin where user group mem

Re: How to create form to show user input and return results from DB

2020-01-04 Thread victor jack
Hi Nina , just read your write up For some form of clarification to your Confusion I’ll just answer the ones I can For the database , don’t make two different ones , one database with two tables 2000 and 2010 will do just fine , just query then right. For the forms it is required to use POS

Re: How to create form to show user input and return results from DB

2020-01-04 Thread Integr@te System
Hi friend, # dont separate bc of the same type of field on one object. ( or find more zipcode service provider for more options) # with get/post method you shoud refer more docs, it just view/create action. # consider review source, a lot comment in your code base and few err commands. Think of

Multi return values in single function

2020-01-04 Thread nrupesh08
hi, I design cms design on the company profile website. 5 pages on the website: index, about, services, projects, contact. the problem is, to display easily DB to frontend expect index page. because. all mixed retrieve DB. just main or sample of the display index page. like., about, service, p

Hello Everbody! Happy New Year

2020-01-04 Thread Murilo A. Gigliotti
Hello All, Thanks for the opportunity to stay here in the group. Let me introduce myself. My name is Murilo Gigliotti, I am from Brazil and I live in São Paulo city. I've been studying Python + Django since the beginning of 2019. Now I am able to help the community with my work. I have a I

Re: Multi return values in single function

2020-01-04 Thread Muhammed Rafi A
return render(request, 'index.html', content) On Sat, Jan 4, 2020, 8:09 PM nrupesh08 wrote: > hi, > I design cms design on the company profile website. > 5 pages on the website: > index, about, services, projects, contact. > > the problem is, > to display easily DB to frontend expect index pag

Re: Hello Everbody! Happy New Year

2020-01-04 Thread Desh Deepak
Wish you the same, My name is Desh Deepak from New Delhi India. Can you help me about django Custom user authentication and restAPI. Thanks in advance Thanks & Regards Desh Deepak +91 7011101001 On Sat, 4 Jan 2020, 20:12 Murilo A. Gigliotti, wrote: > Hello All, > > > > Thanks for the o

RES: Hello Everbody! Happy New Year

2020-01-04 Thread Murilo A. Gigliotti
Hi Desh Deepak Thanks for your message and wishes. I am gonna send you a WhatsApp message to your phone signature. Or let me know you own email. ___ Murilo A. Gigliotti +55 (11) 95272-8600 Alternative email: muril...@gmail.com De: django-users@googlegroups.com [mai

Re: Multi return values in single function

2020-01-04 Thread Eduardo Cervantes
I think I understand what you mean but it would be helpful, at least to me, to see some code and possibly a mock up of your intended UI. Cheers, Eduardo https://eddyizm.github.io/resume/ On Sat, Jan 4, 2020, 06:38 nrupesh08 wrote: > hi, > I design cms design on the company profile website. > 5

Re: How to create form to show user input and return results from DB

2020-01-04 Thread Eduardo Cervantes
1. No. The data for 2000,2010 could be in one table 2.. you can create a view that accepts get and post. Get when the user loads the page initially to fill it out and Post when they submit it. This should take them to a new page with the results or a refreshed view if you are using a JavaScript li

Re: Multi return values in single function

2020-01-04 Thread N Rupesh
I think , you don't understand my problem On Sat, Jan 4, 2020, 8:23 PM Muhammed Rafi A wrote: > return render(request, 'index.html', content) > > > On Sat, Jan 4, 2020, 8:09 PM nrupesh08 wrote: > >> hi, >> I design cms design on the company profile website. >> 5 pages on the website: >> index,

Re: Multi return values in single function

2020-01-04 Thread Eduardo Cervantes
Sorry bud, Your english is a little rough around the edges so that be part of the barrier. good luck. https://eddyizm.github.io/resume/ On Sat, Jan 4, 2020 at 8:02 AM N Rupesh wrote: > I think , you don't understand my problem > > On Sat, Jan 4, 2020, 8:23 PM Muhammed Rafi A > wrote: > >> r

Re: Multi return values in single function

2020-01-04 Thread Motaz Hejaze
# show us your models.py def index(request): content = { about:'about', serv1:'serv1', serv2:'serv2', serv3:'serv3', serv4:'serv4', project1:'project1', project2:'project2', contact:'contact', } return render(request, 'index.html'

Hey , happy new year guys .

2020-01-04 Thread Evil Kunt
Hi guys , Its evil ! Evil kunt . Sorry for the name . Happy new year to all , its bit late , sorry was on a trip . I have been with python since 2009 , been with django kinda 2016 . I also used cherrypy but big fan of django . I also use DRF , Falcon and HUG as rest ,SQLAlchemy orm . I work b

Re: Multi return values in single function

2020-01-04 Thread Evil Kunt
Hey , content is a dictionary , use key value pair and return it . Use if endif or block in template , to render it accordingly . I couldn't get ur question properly , but i can help u , if necessary we can have any webex or skype . On 4 Jan 2020 20:09, "nrupesh08" wrote: hi, I design cms desi

Re: Hello Everbody! Happy New Year

2020-01-04 Thread Evil Kunt
Hey , For rest , if you like i can help you with i use DRF , Falcon and HUG mostly . For user auth , i use django standard auth library . Regards , Kunt. On 4 Jan 2020 20:33, "Desh Deepak" wrote: Wish you the same, My name is Desh Deepak from New Delhi India. Can you help me about django

Re: Hello Everbody! Happy New Year

2020-01-04 Thread Desh Deepak
Can you explain details. Some example of code...!! Thanks in advance On Sun, 5 Jan 2020, 00:03 Evil Kunt, wrote: > Hey , > > For rest , if you like i can help you with i use DRF , Falcon and HUG > mostly . > > For user auth , i use django standard auth library . > > Regards , > Kunt. > > On 4

Re: Multi return values in single function

2020-01-04 Thread V.K. Vanama
As per the instructions provided in the Django Documentation 3.0, you are restricted to get or generate only a single return value to each function defined in views.py. *Instead*, as you stated, the* solution to your issue* is that *creating hyperlinks in which the particular portion of the webp

Re: Tweak admin widget - FilteredSelectMultiple

2020-01-04 Thread Mike Dewhirst
On 4/01/2020 9:03 pm, Integr@te System wrote: Hi Mike, As we look at selected_choice result from iterating v over value (line 428), option_value base on choice(line 438). so we can limit input parameter of value variable from this def(). selected_choices appear in the selected box on screen

Re: Full Stack Developer (Python/Django) position requirement for US GC/Citizen/Can Citizen

2020-01-04 Thread Alfredo Sumague
I'm interested, Thanks, Alfredo Sumague On Fri, Jan 3, 2020 at 9:35 AM Yash Garg wrote: > For a large multi billion dollar Publishing house in New York, client > needs a Full Stack Django Developer with 3+ years of solid Python/Django > experience > > Scope: > >- Code refinement/linting/uni

How to configure HTML Form Labels as Dictionary Keys that are defined in forms.py through views.py?

2020-01-04 Thread V.K. Vanama
Kindly respond me depends on the information provided in the attachment. Thanks and Regards V.K. Vanama -- 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 django-us

Re: Tweak admin widget - FilteredSelectMultiple

2020-01-04 Thread Mike Dewhirst
On 5/01/2020 11:42 am, Mike Dewhirst wrote: On 4/01/2020 9:03 pm, Integr@te System wrote: Hi Mike, As we look at selected_choice result from iterating v over value (line 428), option_value base on choice(line 438). so we can limit input parameter of value variable from this def(). selected_