Last active
August 29, 2015 14:19
-
-
Save nerdfiles/fae1a9e4dcf437365064 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
| 7 class MiniChargeImage(BaseImage): | |
| 8 | |
| 9 def __init__(self, *args, **kwargs): | |
| 10 super(MiniChargeImage, self).__init__(*args, **kwargs) | |
| 11 self.user.related_name = 'mci_user' | |
| 12 self.album.related_name = 'mci_album' | |
| 13 | |
| 14 class Meta(BaseImage.Meta): | |
| 15 abstract = False | |
| 16 app_label = 'mini_charge' | |
| 17 db_table = 'mini_charge_image' | |
| ~ | |
| ~ | |
| ~ | |
| ~ | |
| ~ | |
| ~ | |
| ~ | |
| ~ | |
| ~ | |
| ~ | |
| ~ | |
| ~ | |
| ~ | |
| ~ | |
| ~ | |
| ~ | |
| ~ | |
| ~ | |
| ~ | |
| ~ | |
| ~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment