Project

General

Profile

Download (208 Bytes) Statistics
| Branch: | Tag: | Revision:

from django.db import models

class Service(models.Model):

class Meta:
app_label = 'cale_base'

def __unicode__(self):
return self.name

name = models.CharField(max_length=100)

(5-5/7)