| | 25 | is_public = models.BooleanField(_('is public'), default=True, |
|---|
| | 26 | help_text=_('Uncheck this box to make the comment effectively ' \ |
|---|
| | 27 | 'disappear from the site.')) |
|---|
| | 28 | is_removed = models.BooleanField(_('is removed'), default=False, |
|---|
| | 29 | help_text=_('Check this box if the comment is inappropriate. ' \ |
|---|
| | 30 | 'A "This comment has been removed" message will ' \ |
|---|
| | 31 | 'be displayed instead.')) |
|---|
| 59 | | is_public = models.BooleanField(_('is public'), default=True, |
|---|
| 60 | | help_text=_('Uncheck this box to make the comment effectively ' \ |
|---|
| 61 | | 'disappear from the site.')) |
|---|
| 62 | | is_removed = models.BooleanField(_('is removed'), default=False, |
|---|
| 63 | | help_text=_('Check this box if the comment is inappropriate. ' \ |
|---|
| 64 | | 'A "This comment has been removed" message will ' \ |
|---|
| 65 | | 'be displayed instead.')) |
|---|