diff options
author | luxagraf <sng@luxagraf.net> | 2014-06-24 12:05:46 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2014-06-24 12:05:46 -0400 |
commit | cc70aa809252899dfd062feb241aaecede66bd02 (patch) | |
tree | ed0468f58a240d1c46d7532eddb3c40e455ee4ff /app/notes | |
parent | 78d265997ac26aecfb350ccf497ec2de3f3fad4b (diff) |
Rewrote all sass and reconfigured HTML to use more microformats and
clearer class names
Diffstat (limited to 'app/notes')
-rw-r--r-- | app/notes/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/notes/models.py b/app/notes/models.py index dc158d2..6d139f0 100644 --- a/app/notes/models.py +++ b/app/notes/models.py @@ -42,7 +42,7 @@ class Note(models.Model): twitter_id = models.CharField('twitter_id', max_length=450) twitter_send = models.BooleanField("send to twitter?", default=False) twitter_sent = models.BooleanField(default=False, blank=True) - in_reply_to = models.CharField('in reply to url', max_length=450) + #in_reply_to = models.CharField('in reply to url', max_length=450) def __str__(self): return self.slug |