dynamic home view with customization
[plstackapi.git] / planetstack / core / models / dashboard.py
1 import os
2 from django.db import models
3 from core.models import PlCoreBase
4 from django.contrib.contenttypes import generic
5
6 class DashboardView(PlCoreBase):
7     name = models.CharField(max_length=200, unique=True, help_text="Name of the View")
8     url = models.CharField(max_length=1024, help_text="URL of Dashboard")
9
10     def __unicode__(self):  return u'%s' % (self.name)
11