Re: TemplateDoesNotExist at /accounts/logout/ logout.html

2020-01-07 Thread ramadhan ngallen
Hello The template directory(name) is not correct. Kindly change template directory to "registration/logout.html" instead of "logout.html" Best Regards Ramadhan Ngallen Software Consultant Phone: +255 715 200 997 | ngall...@gmail.com On 7 Jan 2020, 12:24 +0300, Bruckner de Villiers , wrote: >

Re: TemplateDoesNotExist at /accounts/logout/ logout.html

2020-01-07 Thread Kasper Laudrup
Hi Parvez. On 07/01/2020 10.13, Parvez Khan Pathan wrote: i'm new to django and learning from Udemy Bootcamp course but i make Blog Post WEb using django Everything is work good Except Logout can you please help out where made i mistake... If you read the error messages it clearly shows what

Re: Looking for offline messaging sample app

2020-01-07 Thread Motaz Hejaze
By saying "messages" you mean sms ?? On Tue, 7 Jan 2020, 2:52 am Ram, wrote: > Hi, > We are developing a classifieds module and for which we need to add > 1. offline messaging feature so that registered members can submit > messages each other > 2. messages will be persisted in each member profi

Re: Looking for offline messaging sample app

2020-01-07 Thread Ahmed Ishtiaque
I had used django-postman for a similar use case. It's not been worked on for quite some time now, but it was fully functional the last time I'd used it. On Mon, Jan 6, 2020 at 7:52 PM Ram wrote: > Hi, > We are developing a classifieds mod

Re: Looking for offline messaging sample app

2020-01-07 Thread Dev Joshi
Well, I am also new to django. I have made an app that is like a mail service( Not totally but you can exchange messages). So you can look at the repo on github for reference. I AM STILL UPDATING THIS PROJECT SO DON'T EXPECT IT TO BE TOTALLY BUG FREE. Github Repo :- https://github.com/DevJoshi030

Re: Override value of a TextField class method.

2020-01-07 Thread Fabio da Silva Pedro
OK, thank's for this! Em ter., 7 de jan. de 2020 às 03:03, Mohamed A escreveu: > Hint:.. __init__ is a constructor not any method. > > Le lun. 6 jan. 2020 à 23:02, Fabio da Silva Pedro < > fabio.silvape...@gmail.com> a écrit : > >> Easy. You need to provide attrs as dict to the new object. >>> >

Necessary to learn React/ Angular with backend Django

2020-01-07 Thread Balaji Shetty
Hi Currently i deployed application on pythonanywhere. It is online office file management system with around 100 users under 10 different department in hierarchical manner. User and department may increase in future. Entire application is developed in Django back end. Used bootstrap for custom

Re: Looking for offline messaging sample app

2020-01-07 Thread Ram
Hi, Thank you all. Let me add my answers to each one as follows. @Motaz: Messages mean not SMS. It is only offline message. Let me add the process here . Interested party contact Classified Ad owner by submitting a message by clicking contact button for that Ad > then Ad owner get notified by reg

Re: Necessary to learn React/ Angular with backend Django

2020-01-07 Thread Karan Mittal
Hello friend, In my opinion if it is working with current implementation you need not add any react or angular. Learning perspective they are good but implementation of the same in your already working project may raise new errors. That's my opinion, feel free to incorporate them once you have lear

Re: Necessary to learn React/ Angular with backend Django

2020-01-07 Thread Gil Obradors
My opinion, If you want a great powerful user interface ( and experience) of the front end, yes, interesting to spend hours. If the users won't appreciate it, no. Other voice... Good luck! Missatge de Karan Mittal del dia dt., 7 de gen. 2020 a les 19:38: > Hello friend, > In my opinion if

Re: Necessary to learn React/ Angular with backend Django

2020-01-07 Thread S D
Hi Balaji, You can convert your web app into a PWA to gain maximum benefit. Just look it up. Data shows that PWAs are the way to go. Kind regards, - SD On Tue, Jan 7, 2020, 19:47 Balaji Shetty wrote: > Hi > > Currently i deployed application on pythonanywhere. It is online office > file man

Re: Necessary to learn React/ Angular with backend Django

2020-01-07 Thread Ronit Mishra
Hi Balaji, Here are a few things for you to take note down based on my experience. The simplest architecture is the best architecture. Be it *Apache *or *Nginx*, you're using *Django*'s wsgi services and using *Bootstrap *for designing your layout. Probably with some storage solution, either a d

Django >=3 closes dev server when trying to log in in admin

2020-01-07 Thread Cristhiam Gabriel Fernández
Greetings >From version 3 I'm getting this error. When I try log in in admin site django closes dev server with no error, only `"POST /admin/login/?next=/admin/ HTTP/1.1" 302 0`` Any suggestion? -- You received this message because you are subscribed to the Google Groups "Django users" gro

I'm struggling with Django's view directory structure.

2020-01-07 Thread 片岡一平
Hi, I'm struggling with Django's view directory structure. Now, I am creating an app with the following URL structure. domain / app / page_category1 / action1 domain / app / page_category1 / action2 ... domain / app / page_categoryN / actionM In this case, how should the Django view directory

Solved [Was: How can I use a custom widget in the Admin for a custom user]

2020-01-07 Thread Mike Dewhirst
On 6/01/2020 7:26 pm, Mike Dewhirst wrote: Sorry for being boring  ... I cannot persuade the UserAdmin to use a custom widget instead of the one it usually uses. If you can point out where I'm going wrong I will be indebted to you.  I have tried two ways of using a custom widget ... 1. htt

Re: Necessary to learn React/ Angular with backend Django

2020-01-07 Thread sagar ninave
On Wed, Jan 8, 2020 at 3:01 AM Ronit Mishra wrote: > Hi Balaji, > > Here are a few things for you to take note down based on my experience. > > The simplest architecture is the best architecture. > > Be it *Apache *or *Nginx*, you're using *Django*'s wsgi services and > using *Bootstrap *for desi

Re: Necessary to learn React/ Angular with backend Django

2020-01-07 Thread Integr@te System
Hi Shetty, You also consider your project serve local users, so unnecessary implement high interactive pages from internet clients. >From online docs, you can learn any technique via small best practices and apply to your case with basic javascript knowledges or look at python libs, and then expa

Re: Django >=3 closes dev server when trying to log in in admin

2020-01-07 Thread Gil Obradors
Hi, 302 response status isnt an error 😜 https://developer.mozilla.org/es/docs/Web/HTTP/Status/302 El dc., 8 de gen. 2020, 2:29, Cristhiam Gabriel Fernández < cristhiang...@gmail.com> va escriure: > Greetings > > From version 3 I'm getting this error. When I try log in in admin site > django close

Re: Django >=3 closes dev server when trying to log in in admin

2020-01-07 Thread Gil Obradors
Oh yes, sorry, i didnt read right... Mn, no more output to paste? Do you use an IDE? i have django 2 and 3 working without this behaveor Have you introduced changes to admin? El dc., 8 de gen. 2020, 7:55, Gil Obradors va escriure: > Hi, 302 response status isnt an error > 😜 > https://develop