Convert document comment deletion view to CBV. Remove unused document comment form.

This commit is contained in:
Roberto Rosario
2015-08-23 21:48:53 -04:00
parent a9517b9645
commit 1aadede546
5 changed files with 44 additions and 110 deletions

View File

@@ -1,14 +0,0 @@
from __future__ import unicode_literals
from django import forms
from .models import Comment
class CommentForm(forms.ModelForm):
"""
A standard model form to allow users to post a comment
"""
class Meta:
fields = ('comment',)
model = Comment