Created
September 29, 2015 21:17
-
-
Save fchevitarese/e893afc5646ee85eddbf to your computer and use it in GitHub Desktop.
presets.py
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 GroupPresetExport(BaseModel): | |
""" | |
Grupo presets para exportação. | |
O User deverá selecionar as questões à serem exportadas e essa | |
filtragem deverá ser salva para que ele possa aplicá-la sem ter | |
de refazê-las. | |
""" | |
user = models.ForeignKey('user.User') | |
keys = models.TextField(verbose_name=_("Questions to be exported")) | |
def __unicode__(self): | |
return self.name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment