Created
July 22, 2019 19:26
-
-
Save akshar-raaj/a424a3e83474eead475bd8def854367c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Profile(models.Model): | |
| user = models.OneToOneField(User, on_delete=models.CASCADE) | |
| street = models.CharField(max_length=100) | |
| city = models.CharField(max_length=100) | |
| def get_full_address(self): | |
| return "%s, %s" % (self.street, self.city) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment