blob: d7fcd1ee8a2f77e6717c7b157d4f72b0dd421616 [file] [log] [blame]
Sapan Bhatiace657e62017-04-21 14:20:41 +02001# models.py - ExampleService Models
2
3from core.models import Service, TenantWithContainer
4from django.db import transaction
5from django.db.models import *
6
7SERVICE_NAME = 'exampleservice'
8SERVICE_NAME_VERBOSE = 'Example Service'
9SERVICE_NAME_VERBOSE_PLURAL = 'Example Services'
10TENANT_NAME_VERBOSE = 'Example Tenant'
11TENANT_NAME_VERBOSE_PLURAL = 'Example Tenants'