Removed author and title field because they dont really matter.

This commit is contained in:
Martin Mahner 2012-04-14 20:44:55 +02:00
parent bb8d5f1c16
commit 3be7aea4cd

View file

@ -81,9 +81,9 @@ class SnippetForm(forms.ModelForm):
class Meta:
model = Snippet
fields = (
'title',
#'title',
'content',
'author',
#'author',
'lexer',
)