| | 103 | Here are some of the attributes you can use with the ``comment``: |
| | 104 | |
| | 105 | ``{{ comment.user_name }}`` |
| | 106 | :class:`CharField`, max_length=50, blank=True |
| | 107 | |
| | 108 | ``{{ comment.user_email }}`` |
| | 109 | :class:`EmailField`, blank=True |
| | 110 | |
| | 111 | ``{{ comment.user_url }}`` |
| | 112 | :class:`URLField`, blank=True |
| | 113 | |
| | 114 | ``{{ comment.submit_date }}`` |
| | 115 | :class:`DateTimeField`, default=None |
| | 116 | |
| | 117 | ``{{ comment.ip_address }}`` |
| | 118 | :class:`IPAddressField`, blank=True, null=True |
| | 119 | |
| | 120 | ``{{ comment.is_public }}`` |
| | 121 | Make the comment visible on the site. |
| | 122 | :class:`BooleanField`, default=True |
| | 123 | |
| | 124 | ``{{ comment.is_removed }}`` |
| | 125 | Use if the comment has been deemed inappropriate. A `This comment has been removed` message will be displayed instead. |
| | 126 | :class:`BooleanField`, default=False |
| | 127 | |