Rename folder model 'title' field to 'label'.

This commit is contained in:
Roberto Rosario
2015-07-07 23:34:27 -04:00
parent 4860b44daf
commit 4e4103803f
7 changed files with 58 additions and 11 deletions

View File

@@ -18,7 +18,7 @@ logger = logging.getLogger(__name__)
class FolderForm(forms.ModelForm):
class Meta:
model = Folder
fields = ('title',)
fields = ('label',)
class FolderListForm(forms.Form):