Re: Seasoned Django Developer

2021-03-03 Thread Hubert Kanyamahanga
Hello, I am used to drf views and I have implemented a working search engine with def and haystack and Elastic search Do not hesitate to reach me out on my whastapp number +221777922780 On Thu, Mar 4, 2021, 4:31 AM Noel Simela wrote: > Good day, > > I am looking for a good django developer to a

Re: Seasoned Django Developer

2021-03-03 Thread Suraj Thapa FC
Yess On Thu, 4 Mar, 2021, 10:01 am Noel Simela, wrote: > Good day, > > I am looking for a good django developer to assist with some elements of a > project. > If you are familiar with Class Based Views , Signal and Haystack please > respond. > > No chancers please. > > -- > *Noel Nqabeni Simela*

Re: Django does't send email on the remote server

2021-03-03 Thread Malcolm MacKinnon
This might help: https://dev.to/abderrahmanemustapha/how-to-send-email-with-django-and-gmail-in-production-the-right-way-24ab On Wed, Mar 3, 2021 at 8:57 PM AMRIT SHAHI wrote: > > is that your site backend is fully backend > > On Tue, Feb 23, 2021 at 3:51 PM Sergei Sokov wrote: >> >> I am trying

Re: Django does't send email on the remote server

2021-03-03 Thread AMRIT SHAHI
is that your site backend is fully backend On Tue, Feb 23, 2021 at 3:51 PM Sergei Sokov wrote: > I am trying to send an email when a user fills out a form on my site. > Everything works on my local server, letters are sent and I am got them. > On a remote timeweb.com server with the same setting

Seasoned Django Developer

2021-03-03 Thread Noel Simela
Good day, I am looking for a good django developer to assist with some elements of a project. If you are familiar with Class Based Views , Signal and Haystack please respond. No chancers please. -- *Noel Nqabeni Simela* Web: https://nqabeni.wordpress.com *"The Best thing in Life, is Life!"* -

Re: Create a custom User model and Authenticate with it

2021-03-03 Thread Gabriel Araya Garcia
Davansh: The tables are made already in Admin Django, you only have to build template (html), and the view. For example, in views.py: def login_ini(request): variable1 = 'Pantalla de Acceso al Sistema' error_log = 'ok' username = request.POST.get('username') password = request.POST

ANN: django-yamlconf v1.4.0 is available

2021-03-03 Thread Michael Rohan
Hi Folks, Have released v1.4.0 for django-yamlconf, a module supporting Django settings via YAML files (searching up the directory hierarchy, e.g., in a K8s environment, adding a "final" set of settings via "/APPLICATION.yaml", see the documentation a https://django-yamlconf.readthedocs.io/en/late

Re: Create a custom User model and Authenticate with it

2021-03-03 Thread Chelsea Fan
try this code, do not forget import authenticate (from django.contrib.auth import authenticate, login) modify this code On Wed, Mar 3, 2021 at 8:01 PM Kasper Laudrup wrote: > On 03/03/2021 16.27, Devansh Soni wrote: > > Hi, > > > > I'm currently working on a Django project in which I have to cre

Re: Create a custom User model and Authenticate with it

2021-03-03 Thread Kasper Laudrup
On 03/03/2021 16.27, Devansh Soni wrote: Hi, I'm currently working on a Django project in which I have to create a User model with fields such as username, email, college, branch, semester, password, etc. And use this model to authenticate a user with an email and password. How can I achiev

Create a custom User model and Authenticate with it

2021-03-03 Thread Devansh Soni
Hi, I'm currently working on a Django project in which I have to create a User model with fields such as username, email, college, branch, semester, password, etc. And use this model to authenticate a user with an email and password. How can I achieve this? Or what are the ways to achieve thi

Re: Problem with admin site

2021-03-03 Thread kolo1
Re: Problem with admin siteThanx for your replay. I found my mistake. I have incorrectly implemented the qrcode software in urls.py in two applications in my project. I have: path('pdf_page', lost.home, include('qr_code.urls', namespace="qr_code"), name='pdf_page') change to: path('pdf_page', i

Re: Problem with admin site

2021-03-03 Thread Mr. X Offencer
Show your model.py On Wed, 3 Mar 2021, 19:41 kolo1, wrote: > Hey > I've made some project with couples apps and now I'd like to manage by > admin site but when I try to open localhost:8000/admin I get error > """ > TypeError at /admin/'tuple' object is not a mappingRequest Method: > GETRequest U

Problem with admin site

2021-03-03 Thread kolo1
Hey I've made some project with couples apps and now I'd like to manage by admin site but when I try to open localhost:8000/admin I get error """ TypeError at /admin/'tuple' object is not a mappingRequest Method: GETRequest URL: http://localhost:8000/admin/ Django Version: 3.1.6Exception Type: Typ

Re: Popups in django forms?

2021-03-03 Thread zvo...@seznam.cz
No response for this topic for some time, so I will try partially answer myself. Admin Django starting from version 2.0 has autocomplete_fields. These are relalational fields (ForeignKey, ManyToManyField), targeted into other ModelAdmin, which find content for their widget via ajax at the url a