Changes between Initial Version and Version 1 of Ticket #34408


Ignore:
Timestamp:
Mar 11, 2023, 2:27:15 PM (20 months ago)
Author:
Tim Graham
Comment:

This looks like a lack of understanding rather than a bug report. Please spend more time reading the code and documentation to understand how it works. After that, if you have a specific documentation enhancement proposal, feel free to offer it.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34408

    • Property Resolutioninvalid
    • Property Status newclosed
  • Ticket #34408 – Description

    initial v1  
    33Here is my code:
    44
    5  backends.py
    6 ```
     5{{{#!python
    76class EmailBackend(BaseBackend):
    87    def authenticate(self, request, username=None, password=None):
     
    2625        print("hello")
    2726        return True
    28 
    29 ```
     27}}}
    3028
    3129and logs
    3230
    33 ```
     31{{{
    3432[12/Mar/2023 00:01:05] "GET /login HTTP/1.1" 200 861
    3533[12/Mar/2023 00:01:16] "POST /login HTTP/1.1" 302 0
    3634[12/Mar/2023 00:01:16] "GET / HTTP/1.1" 200 370
    37 ```
     35}}}
    3836
    3937as you can see there was no output saying "hello".
Back to Top