Re: Impossible d'utiliser language_code 'fr-fr' avec django 3.0.4

2020-03-26 Thread Simon Charette
La documentation de Django est disponible en Français. Ce message d'erreur est traduit dans cette section: https://docs.djangoproject.com/fr/3.0/ref/checks/#translation Tu as deux choix: 1. Ajoute 'fr-fr' à ton setting LANGUAGES tel qu'indiqué 2. Définit ton setting LANGUAGE_CODE = 'fr' plutôt q

Re: Impossible d'utiliser language_code 'fr-fr' avec django 3.0.4

2020-03-26 Thread Jean Luc Gaman
Hello, Anselme malheureusement l’interface Django est en anglais que souhaite tu faire ? Si tu veux juste découvrir Django tu devrais suivre le tutoriel officiel de Django pour démarrer, https://docs.djangoproject.com/en/3.0/intro/tutorial01/

Impossible d'utiliser language_code 'fr-fr' avec django 3.0.4

2020-03-26 Thread Anselme SERI
Je suis un nouveau dans le développement python et je teste actuellement Django. Il m'est impossible d'utiliser le language_code 'fr-fr' dans django 3.0.4. Le message d'erreur qui s'affiche dans le terminal est le suivant : "ERRORS: ?: (translation.E004) You have provided a value for the LANGUAGE

Re: email": [ "Enter a valid email address." ]

2020-03-26 Thread devyen
Hi Do know how to whitelist an email domain name? It seems odd that I would have to go though an white list all of the main email domains (gmail, protonmail, live, yahoo etc.) Ive been unable to figure it out on my own Thanks, On Sat, Mar 21, 2020 at 4:45 AM Integr@te System wrote: > Hi Fre

Re: hello world

2020-03-26 Thread Mr Black Hat
I try djangoproject.com, On Fri, Mar 27, 2020, 03:22 surendra bhaskar < surendra.bhaska...@siesgst.ac.in> wrote: > Follow official documentation it's best > > On Thu, 26 Mar, 2020, 6:25 PM victor awakan, > wrote: > >> >> Have you try to follow the official documentation tutorial ? >> >> On Thu 2

Re: hello world

2020-03-26 Thread surendra bhaskar
Follow official documentation it's best On Thu, 26 Mar, 2020, 6:25 PM victor awakan, wrote: > > Have you try to follow the official documentation tutorial ? > > On Thu 26. Mar 2020 at 14.48, Mr Black Hat > wrote: > >> hello i am beginner in django, guys can you help me from where should i >> le

Re: selectfilter2 javascript and django

2020-03-26 Thread Jason Liu
Thank you so much for providing the solution, it solved my problem as well. On Wednesday, April 29, 2015 at 6:34:25 AM UTC-7, Dimitris Kougioumtzis wrote: > > > ok i found it > > in the urls.py i add the > > (r'^jsi18n/$', 'django.views.i18n.javascript_catalog'), > > > and in template > >

Re: keep getting the Fatal Python error with mod_wsgi and apache

2020-03-26 Thread Fateh Budwal
Yes i did recreate my virtualenv. On Thursday, March 26, 2020 at 6:58:15 AM UTC-7, Stephen J. Butler wrote: > > Did you recreate the virtualenv on the server, or did you copy it from > your development machine? You should recreate virtualenv's when deploying > to a different server. > > On Thu

Re: I have issue. I want to migrate database from sqlite3 to postgresql. With a table have 10M records. I need a solution for issue. Maybe help me?

2020-03-26 Thread Farai M
Export to csv in SQL then import into postgresql from there On Wed, Mar 25, 2020, 6:43 PM Thắng IT wrote: > solution > > -- > 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, sen

Re: CRUD Operations Without Model

2020-03-26 Thread pot-potato
Hey, whatever your name is, There is a command called *inspectdb *in Django (*python manage.py inspectdb*). Basically it reads database tables configuration and creates a models script. which can be copied into models.py then use it. And make sure that they are in models class meta for these t

Re: keep getting the Fatal Python error with mod_wsgi and apache

2020-03-26 Thread Stephen J. Butler
Did you recreate the virtualenv on the server, or did you copy it from your development machine? You should recreate virtualenv's when deploying to a different server. On Thu, Mar 26, 2020 at 8:53 AM Fateh Budwal wrote: > Yes python 3.8.2 is installed > > On Wednesday, March 25, 2020 at 8:30:35

Re: keep getting the Fatal Python error with mod_wsgi and apache

2020-03-26 Thread Fateh Budwal
i do have django 2.2.8 installed in production. On Wednesday, March 25, 2020 at 9:36:58 PM UTC-7, Mike Dewhirst wrote: > > On 26/03/2020 2:29 pm, Hella Nick wrote: > > 你的服务器是安装的python3.8.2的版本吗? > > > > Fateh Budwal >> > > 于2020年3月26日周四 上午6:03写道: > > > > Hello

Re: keep getting the Fatal Python error with mod_wsgi and apache

2020-03-26 Thread Fateh Budwal
Yes python 3.8.2 is installed On Wednesday, March 25, 2020 at 8:30:35 PM UTC-7, Hella Nick wrote: > > 你的服务器是安装的python3.8.2的版本吗? > > Fateh Budwal > 于2020年3月26日周四 上午6:03写道: > >> Hello Everyone >> I have complied python 3.8.2 with django 2.2. it run locally fine but >> when i try to deploy it wit

Re: hello world

2020-03-26 Thread victor awakan
Have you try to follow the official documentation tutorial ? On Thu 26. Mar 2020 at 14.48, Mr Black Hat wrote: > hello i am beginner in django, guys can you help me from where should i > learn django > i know how to create projects in django and also multiple apps, but i dont > know how to templ

CRUD Operations Without Model

2020-03-26 Thread LiquidOxygen SpiritsGenuine
Hello All.. I am using PostgreSQL as my database. I already have the tables created. I just want to use DJango/Python APIs to perform CRUD operations without re-creating the tables again using Model. Please help. -- You received this message because you are subscribed to the Google Groups "D

hello world

2020-03-26 Thread Mr Black Hat
hello i am beginner in django, guys can you help me from where should i learn django i know how to create projects in django and also multiple apps, but i dont know how to templating in django -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: django search page not found error

2020-03-26 Thread omid jahadi
How can i handle this exception ... I have this error: "No agents found matching the query" On Thursday, March 26, 2020 at 12:08:14 AM UTC+4:30, Motaz Hejaze wrote: > > No problem , you can catch this exception in your views.py if you want .. > > On Wed, 25 Mar 2020, 12:46 pm omid jahadi, > wrot

Re: I have issue. I want to migrate database from sqlite3 to postgresql. With a table have 10M records. I need a solution for issue. Maybe help me?

2020-03-26 Thread Daniel Chimeno
One possible solution: $ createdb newdb $ pgloader ./test/sqlite/sqlite.db postgresql:///newdb https://github.com/dimitri/pgloader El miércoles, 25 de marzo de 2020, 17:45:54 (UTC+1), Thắng IT escribió: > > solution -- You received this message because you are subscribed to the Google Groups

Re: End of extended support for Django 1.11

2020-03-26 Thread Andréas Kühne
You can rely on April 2020, but not beyond that is the way I would interpret it. However - you should be migrating off it anyway - it's an old version. Regards, Andréas Den tors 26 mars 2020 kl 00:11 skrev Daniela Kim : > Hi everyone, > > When exactly is the *end of extended support* for Djang