class AddId(models.Model):
author = models.ForeignKey('auth.User')
id = models.CharField(max_length=200)
password = models.CharField(max_length=200)
def __str__(self):
return self.id
In Janggo, we want a user named A to receive additional ID and password values (multiple IDs and passwords.
If you do that, you can add it, but if you look at the password part in the admin, can you make it look like a password in the admin?
I googling it, but it's hard to find it except for making it look like a '****' shape in the HTML hem. <
Masters, please.
django python
The password must be encrypted using a hash value like md5 to protect the input string in a form that is not known to humans even if it is printed later. Since DB can see the value when stored as a normal string, it would be desirable to store passwords using an encryption algorithm that cannot be decrypted.
573 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
622 Uncaught (inpromise) Error on Electron: An object could not be cloned
919 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
575 Who developed the "avformat-59.dll" that comes with FFmpeg?
613 GDB gets version error when attempting to debug with the Presense SDK (IDE)
© 2024 OneMinuteCode. All rights reserved.