blob: aa79f8469675ab1fb19122e314da22fd2c1d1765 [file] [log] [blame]
Scott Baker2c3cb642014-05-19 17:55:56 -07001import os
2from django.db import models
3from core.models import PlCoreBase
4from django.contrib.contenttypes import generic
5
6class 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