Show More
@@ -8,7 +8,7 b' from boards.models import Attachment, Ke' | |||
|
8 | 8 | from boards.models.attachment import FILE_TYPES_IMAGE |
|
9 | 9 | from boards.models.base import Viewable |
|
10 | 10 | from boards.models.post.export import get_exporter, DIFF_TYPE_JSON |
|
11 | from boards.models.post.manager import PostManager | |
|
11 | from boards.models.post.manager import PostManager, NO_IP | |
|
12 | 12 | from boards.utils import datetime_to_epoch |
|
13 | 13 | from django.core.exceptions import ObjectDoesNotExist |
|
14 | 14 | from django.core.urlresolvers import reverse |
@@ -403,3 +403,7 b' class Post(models.Model, Viewable):' | |||
|
403 | 403 | |
|
404 | 404 | def get_ip_color(self): |
|
405 | 405 | return hashlib.md5(self.poster_ip.encode()).hexdigest()[:6] |
|
406 | ||
|
407 | def has_ip(self): | |
|
408 | return self.poster_ip != NO_IP | |
|
409 |
@@ -7,7 +7,7 b'' | |||
|
7 | 7 | <div class="post-info"> |
|
8 | 8 | <a class="post_id" href="{{ post.get_absolute_url }}">#{{ post.id }}</a> |
|
9 | 9 | <span class="title">{{ post.title }}</span> |
|
10 | {% if perms.boards.change_post %} | |
|
10 | {% if perms.boards.change_post and post.has_ip %} | |
|
11 | 11 | <a href="{% url 'feed' %}?ip={{ post.poster_ip }}">*</a> |
|
12 | 12 | <span class="pub_time" style="border-bottom: solid 2px #{{ post.get_ip_color }};" title="{{ post.poster_ip }}"> |
|
13 | 13 | {% else %} |
General Comments 0
You need to be logged in to leave comments.
Login now