38 lines
1.2 KiB
Python
38 lines
1.2 KiB
Python
from django.db import models
|
|
from django.contrib.comments.signals import comment_was_posted
|
|
|
|
|
|
class Issue(models.Model):
|
|
title = models.CharField(max_length=255)
|
|
summary = models.TextField(blank=True, null=True)
|
|
date = models.DateField()
|
|
html = models.TextField(blank=True)
|
|
|
|
def __unicode__(self):
|
|
return self.title
|
|
|
|
def get_dict(self):
|
|
#FIXME: return self.date in JSON-friendly way
|
|
return {
|
|
'id': self.id,
|
|
'title': self.title,
|
|
'summary': self.summary,
|
|
}
|
|
|
|
# Create your models here.
|
|
|
|
def comments_notify(sender, **kwargs):
|
|
comment = kwargs['comment']
|
|
name = comment.name
|
|
email = comment.email
|
|
content = comment.comment
|
|
erang_id = comment.content_object.id
|
|
comment_id = comment.id
|
|
url = "http://theatreforum.in/erang/?issue_id=%d" % (erang_id)
|
|
admin_url = "http://theatreforum.in/admin/comments/comment/%d/" % (comment_id)
|
|
message = "Page: %s \n Name: %s \n Email: %s \n Comment: %s\n\n Moderate: %s" % (url, name, email, content, admin_url)
|
|
send_mail("New comment on E-Rang", message, "do_not_reply@theatreforum.in", ["erang@theatreforum.in", "sanjaybhangar@gmail.com", "sharvari@theatreforum.in"])
|
|
return True
|
|
|
|
comment_was_posted.connect(comments_notify)
|