X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/5d57db05564cb55a99f2088c50391296670ba8d6..bb4d6a520eba3b7fcd5896bbd23c52c4a80c623a:/questions/models.py?ds=inline
diff --git a/questions/models.py b/questions/models.py
index 06addd3..278071e 100644
--- a/questions/models.py
+++ b/questions/models.py
@@ -7,17 +7,53 @@ from django.db import models
from django.template import loader, Context
from django.utils.translation import ugettext_lazy as _
from markupfield.fields import MarkupField
+from taggit.models import TagBase, GenericTaggedItemBase
+from taggit_autosuggest.managers import TaggableManager
+from fnpdjango.utils.text.slughifi import slughifi
+
+
+class TagCategory(models.Model):
+ name = models.CharField(verbose_name=_('Name'), unique = True, max_length = 100)
+ slug = models.SlugField(verbose_name=_('Slug'), unique = True, max_length = 100)
+
+ class Meta:
+ verbose_name = _("Tag Category")
+ verbose_name_plural = _("Tag Categories")
+
+ def __unicode__(self):
+ return self.name
+
+
+class Tag(TagBase):
+ def slugify(self, tag, i=None):
+ slug = slughifi(tag)
+ if i is not None:
+ slug += "_%d" % i
+ return slug
+
+ category = models.ForeignKey(TagCategory, blank = True, null = True, on_delete = models.SET_NULL, related_name = 'tags')
+ click_count = models.IntegerField(null = False, default = 0)
+
+ class Meta:
+ verbose_name = _("Tag")
+ verbose_name_plural = _("Tags")
+
+
+class TagItem(GenericTaggedItemBase):
+ tag = models.ForeignKey(Tag, related_name="items")
+
class Question(models.Model):
email = models.EmailField(_('contact e-mail'), null=True, blank=True)
- question = models.TextField(_('question'), db_index=True)
+ question = models.TextField(_('question'), db_index=False)
created_at = models.DateTimeField(_('created at'), auto_now_add=True)
changed_at = models.DateTimeField(_('changed at'), auto_now=True)
approved = models.BooleanField(_('approved'), default=False)
- edited_question = models.TextField(_('edited question'), db_index=True, null=True, blank=True,
+ edited_question = models.TextField(_('edited question'), db_index=False, null=True, blank=True,
help_text=_("Leave empty if question doesn't need editing."))
answer = MarkupField(_('answer'), markup_type='textile_pl', blank=True,
- help_text=_('Use Textile syntax.'))
+ help_text=_('Use Textile syntax.'))
+ answered_by = models.CharField(_('answered by'), max_length=127, null=True, blank=True)
answered = models.BooleanField(_('answered'), db_index=True, default=False,
help_text=_('Check to send the answer to user.'))
answered_at = models.DateTimeField(_('answered at'), null=True, blank=True, db_index=True)
@@ -25,6 +61,8 @@ class Question(models.Model):
help_text=_('Check to display answered question on site.'))
published_at = models.DateTimeField(_('published at'), null=True, blank=True, db_index=True)
+ tags = TaggableManager(through=TagItem, blank=True)
+
class Meta:
ordering = ['-created_at']
verbose_name = _('question')
@@ -55,6 +93,24 @@ class Question(models.Model):
msg.attach_alternative(html_content, "text/html")
msg.send()
+ def ack_author(self):
+ if not self.email:
+ return
+ site = Site.objects.get_current()
+ context = Context({
+ 'question': self,
+ 'site': site,
+ })
+ text_content = loader.get_template('questions/ack_mail.txt'
+ ).render(context)
+ html_content = loader.get_template('questions/ack_mail.html'
+ ).render(context)
+ msg = EmailMultiAlternatives(
+ u'Twoje pytanie zostaÅo zarejestrowane w serwisie %s.' % site.domain,
+ text_content, settings.SERVER_EMAIL, [self.email])
+ msg.attach_alternative(html_content, "text/html")
+ msg.send()
+
def save(self, *args, **kwargs):
now = datetime.now()
notify = False