Sapan Bhatia | ce657e6 | 2017-04-21 14:20:41 +0200 | [diff] [blame] | 1 | # models.py - ExampleService Models |
2 | |||||
3 | from core.models import Service, TenantWithContainer | ||||
4 | from django.db import transaction | ||||
5 | from django.db.models import * | ||||
6 | |||||
7 | SERVICE_NAME = 'exampleservice' | ||||
8 | SERVICE_NAME_VERBOSE = 'Example Service' | ||||
9 | SERVICE_NAME_VERBOSE_PLURAL = 'Example Services' | ||||
10 | TENANT_NAME_VERBOSE = 'Example Tenant' | ||||
11 | TENANT_NAME_VERBOSE_PLURAL = 'Example Tenants' |