Skip to content

Instantly share code, notes, and snippets.

@k0001
Created March 8, 2010 18:43
Show Gist options
  • Save k0001/325441 to your computer and use it in GitHub Desktop.
Save k0001/325441 to your computer and use it in GitHub Desktop.
class WidgetHtml(models.Model):
POSITION_CHOICES = (
('content', 'Content'),
('sidebar', 'Sidebar')
)
content_type = models.ForeignKey('contenttypes.ContentType')
position = models.CharField(choices=POSITION_CHOICES, default='content')
html = models.TextField()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment