Re: NoReverseMatch if "url" template tag not used with app_name

2020-07-15 Thread Franz Ulenaers
It seems you have specified an app_name in your post/urls.py : *app_name='post'* Have you different name='home' in your apps then you have to use the app_name to make it unique !! Op dinsdag 14 juli 2020 22:08:22 UTC+2 schreef strang: > > I understand what you are trying to explain. > > I ha

Re: Error while using manage.py

2020-06-22 Thread Franz Ulenaers
please install sqlite3 Op maandag 22 juni 2020 16:17:54 UTC+2 schreef NAVEEN RS: > > [image: Screenshot (48).png] > > I am using conda virtual enviroment to use django for my project . I am > learning django from telusko youtube channel . First time while using > python manage.py runserver , pyt

Re: Page 404 error after running Django server

2020-05-04 Thread Franz Ulenaers
pleae change your urls.py as follow urlpatterns = [ path('admin/', admin.site.urls), path('', welcome) ] Op maandag 4 mei 2020 20:09:51 UTC+2 schreef Deepti sharma: > > Hi, I have just started learning django and was trying to make a meeting > planner project y folllowing a course. > I

Re: Page 404 error after running Django server

2020-05-04 Thread franz ulenaers
path('welcome.html', welcome) should be : path('', welcome) Op 4/05/2020 om 20:11 schreef 'Amitesh Sahay' via Django users: There are lots of issues with urls.py Please go through the django documents on how to write urls.py Sent from Yahoo Mail on Android

Re: Django file logging - rotate files on every day and max file size

2019-12-08 Thread Franz Ulenaers
it works when i remove the formatter line ! Op zondag 8 december 2019 09:44:15 UTC+1 schreef Franz Ulenaers: > > i get a problem with the 'formatter' : 'standard' > Watching for file changes with StatReloader > Exception in thread django-main-thread: > Tracebac

Re: Django file logging - rotate files on every day and max file size

2019-12-08 Thread Franz Ulenaers
i get a problem with the 'formatter' : 'standard' Watching for file changes with StatReloader Exception in thread django-main-thread: Traceback (most recent call last): File "/usr/lib/python3.7/logging/config.py", line 700, in configure_handler formatter = self.config['formatters'][formatter

Re: Trying to update a record using UpdateView Error: Circuitinfotable matching query does not exist

2019-11-27 Thread franz ulenaers
put your template |'circuitinfotable_form.html' |on one of your folders :| /home/db_user/ciopsdb/base/templates/viewLit/circuitinfotable_form.html /home/db_user/ciopsdb/templates/viewLit/circuitinfotable_form.html /home/db_user/ciopsdb/editLit/templates/viewLit/circuitinfotable_form.html /home/db_

Re: mysql data connectivity problem

2019-11-19 Thread Franz Ulenaers
Hi, Do you want to write a python program which read a sqlite3 database and maybe do some updates and/or create new records in the database ? > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Re: Sending mail

2019-11-10 Thread franz ulenaers
I am missing here the file  = views.py Also the " from apps.validators import validaRut " gives problems because i am missing also the validators.py file Op 10/11/2019 om 12:54 schreef Franz Ulenaers: - how to implement these files into my project ? - have i to startapp “registe

Re: Sending mail

2019-11-10 Thread Franz Ulenaers
- how to implement these files into my project ? - have i to startapp “register” into my project ? - i believe models.py , urls.py , forms.py and Admin.py should be put into the register folder - login.html in the folder templates/ Thanks Franz Verstuurd vanaf mijn iPhone > Op 8 nov. 2019 o

ListView is not showing me the latest created item made by CreateView !

2019-11-03 Thread Franz Ulenaers
ListView is not showing me the latest created item made by CreateView even after a refresh of my browser ! It is only solved when i restart the django server with 'python manage.py runserver' . -- You received this message because you are subscribed to the Google Groups "Django users" group. T