Re: Regarding to suggestion for registration page

2019-08-20 Thread Tosin Ayoola
Using httpRedirect to d view 4 the URL u want user to b redirected to On Aug 21, 2019 06:21, "RONAK JAIN" wrote: > I am trying to redirect my registration page but, I am not getting *please > check my attached screenshot* and please let me know where I am doing > wrong... > > > > On Tue, Aug 20,

Re: DRF with Rich Text

2019-08-20 Thread Aditya Singh
Hi, Hope you are good. Django ships with top of the line CSRF protection first of all, Secondly, you may specify domain specific headers and strictly restrict the expected type of data, cookies timeout, response data type from the server to the client. Also, you may leverage several robust django c

DRF with Rich Text

2019-08-20 Thread Yoo
Hi, I'm gonna be using Django Rest Framework for API with a Postgres stack and not developing with website. Coding apps in Swift and Androidx Java. Users can POST rich text, or text that uses HTML, to the server, and then other users can GET that HTML and view it in (ui)TextView. Based on previ

Re: Translator of words and phrases in Django

2019-08-20 Thread Mike Dewhirst
On 21/08/2019 12:05 am, Harold A wrote: Hello everyone I am practically new to django and I want to make a word translator similar to the google translator, for the translation of my into native language into English and Spanish. So that our native native language is not lost I would app

Re: job search

2019-08-20 Thread Shirley Nelson
Try Manhatten Chase. They hire docker developers. On Tue, Aug 20, 2019, 2:31 PM Sam W wrote: > I'm sorry. But knowing Python alone is not enough. > > > I know Python and Django really well, still can't find a job for more than six > months. > > > You need to know Solid Python programming, pytho

Re: Installation of django

2019-08-20 Thread herve bineli
Please, provide the errors you get when trying: $ pip install --user django on your shell On Tue, Aug 20, 2019 at 4:44 PM Amit Samanta wrote: > Hi, > > I want to install django in linux server for python 2.7.2. > i am not able install django > Please help with the installation step for django

Is there any ready to use Django script for user management like the UserCake or User Spice framework in PHP?

2019-08-20 Thread Vishal Parkar
New to Django. Wish to port a web application to Django, which I have already developed in PHP & MySQL with the UserSpice framework providing the user management. I have modified the registration functionality such that only the ones invited using their emails by some already existing users can

Fwd: FW: Byte string error Django cache + celery

2019-08-20 Thread Kai Aeberli
Hi, When using Django caching backend with celery, I noticed I get an error “if ord(char) < 33 or ord(char) == 127: TypeError: ord() expected string of length 1, but int found” It goes away when I change the yellow highlighted to ‘str(key)’: -- You received this message because you are s

Re: job search

2019-08-20 Thread Sam W
I'm sorry. But knowing Python alone is not enough. I know Python and Django really well, still can't find a job for more than six months. You need to know Solid Python programming, python framework (Django (DRF) & Flask), Docker and Kubernetes, AWS or Azure, Front-end development (React

Re: Installation of django

2019-08-20 Thread Kasper Laudrup
On August 20, 2019 4:31:32 PM GMT+02:00, Amit Samanta wrote: >Hi, > >I want to install django in linux server for python 2.7.2. >i am not able install django >Please help with the installation step for django in linux. > > >Thanks and Regards >Amit Samanta > >-- >You received this message becaus

Re: Hello developers

2019-08-20 Thread Kasper Laudrup
On August 20, 2019 11:42:51 AM GMT+02:00, Victor Tumwecj wrote: >I tried to a shopping cart but it does not add products and total >amount >what can I do >Thank you django community > >-- >You received this message because you are subscribed to the Google >Groups "Django users" group. >To unsubs

job search

2019-08-20 Thread Tessnim Zrayga
Hello, I'm looking for a job as a python developer. Any help? I'm willing to relocate anywhere in the world. Regards. -- ZRAYGA Tessnim Python Developer solixy.com Skype: tessnim.zr -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscr

Re: How to refresh part of a Django page with AJAX?

2019-08-20 Thread Gil Obradors
HI I subscribe all @Joseph said, and add: For url dispatcher, can you try with very different stamentlist regex? I think you can't have 2 same regex, or if you want, you may treat this route inside classview About AJAX,I can't help no more, I'm newbie with AJAX, I think that is more interesting

Re: Facing trouble with djangotoolbox

2019-08-20 Thread Amine Hosni
Have you found any alternative solution please ? I'm stuck right were you were... On Saturday, August 18, 2018 at 3:17:50 PM UTC+2, Sagar wrote: > > Hello, > I am working on project in which I'm using django2 and MongoDB as > database. I have used djongo driver to connect django with MongoDB. I

Hello developers

2019-08-20 Thread Victor Tumwecj
I tried to a shopping cart but it does not add products and total amount what can I do Thank you django community -- 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

Installation of django

2019-08-20 Thread Amit Samanta
Hi, I want to install django in linux server for python 2.7.2. i am not able install django Please help with the installation step for django in linux. Thanks and Regards Amit Samanta -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubsc

Django's str(queryset.query) returns invalid SQL if I compare datetimes

2019-08-20 Thread Jo
I have a Django queryset that I prepare with queryset.filter(date__gte=datetime(2011,1,1)) If I then call `str(queryset.query)` I see this in the string: ... WHERE "App_table"."date" >= 2011-1-1 However, this is invalid SQL code as if I run this in Postgresql I get this error: ... W

Re: Template Does Not Exist

2019-08-20 Thread Naty Mina
*Thank U* בתאריך יום שלישי, 20 באוגוסט 2019 בשעה 11:07:46 UTC+3, מאת Tosin Ayoola: > > D problem is either in ur settings.py file u didn't properly set ur > template dir correctly (which u can do as follows in ur settings.py In the > template setting section, set d value of ur DIR =[os.path.j

Translator of words and phrases in Django

2019-08-20 Thread Harold A
Hello everyone I am practically new to django and I want to make a word translator similar to the google translator, for the translation of my into native language into English and Spanish. So that our native native language is not lost I would appreciate if you can guide me on how to do

DRF

2019-08-20 Thread Soumen Khatua
Hi Folks, after quesry search I want to show exact data in first place then all the by their length of characters as an example If I''l search for *'the'* then the sequences will be like: *the --because matched first* *they --second record* *their --third record* *theirm--fourth record* I was tr

Re: Rest framework autocomplete

2019-08-20 Thread Andréas Kühne
If you read the article I sent you he goes through the javascript side and what you need to do on that side. However the endpoint URL you need to decide yourself - thats the part restframework helps you with. Regards, Andréas Den tis 20 aug. 2019 kl 11:05 skrev Soumen Khatua : > Could you tell

Re: Rest framework autocomplete

2019-08-20 Thread Soumen Khatua
Could you tell me how can I configure javascript in my rest api apps. Actually I'm new to this area. Thank you On Tue, 20 Aug 2019, 13:52 Andréas Kühne, wrote: > Ok - so what you need to do is configure the endpoint to use the filters > and pagination. Then you need to connect to the backend wi

Re: Rest framework autocomplete

2019-08-20 Thread Andréas Kühne
Ok - so what you need to do is configure the endpoint to use the filters and pagination. Then you need to connect to the backend with javascript and populating the results by adding to the dom. Here is something that is more or less what you want to do - however you need the backend code to get th

Re: Rest framework autocomplete

2019-08-20 Thread Soumen Khatua
Suppose If I'll type 'A' and database contains some sentences as an example AABC, ABC, BCA.It should suggest all the names those are contains A. If I need to javascript then I can configure could you tell me please. Thank you for your response. On Tue, 20 Aug 2019, 13:33 DANIEL URBANO DE LA RUA,

Re: Template Does Not Exist

2019-08-20 Thread Tosin Ayoola
D problem is either in ur settings.py file u didn't properly set ur template dir correctly (which u can do as follows in ur settings.py In the template setting section, set d value of ur DIR =[os.path.join(BASE_DIR, 'templates'] den create a templates folder either in ur app dir or project dir,

Re: Rest framework autocomplete

2019-08-20 Thread DANIEL URBANO DE LA RUA
You will need to load the data first and for the rest use javascript On Tue, 20 Aug 2019, 09:56 Andréas Kühne Hi, > > This is exactly what you do with filtering and pagination? Could you > please specify why it doesn't suit your usecase? I need to understand more > to actually be able to help you

Re: Rest framework autocomplete

2019-08-20 Thread Andréas Kühne
Hi, This is exactly what you do with filtering and pagination? Could you please specify why it doesn't suit your usecase? I need to understand more to actually be able to help you :) Regards, Andréas Den tis 20 aug. 2019 kl 06:56 skrev Soumen Khatua : > My query is little bit different suppos

Django Rest Framework

2019-08-20 Thread Soumen Khatua
Hi Folks, In my Django model I have one column as *name* and my query is if name is matched in search filter then it should appear first then all the records by their length size and also by the most number of use.Please tell me How I can do that. Thank You Regards, Soumen -- You received th