models.py 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import models
  4. from coin.configuration.models import Configuration
  5. class SimpleDSL(Configuration):
  6. """Very simple DSL model, mostly to demonstrate the use of the generic
  7. functionality of COIN. There is no real configuration backend, and no
  8. authentication data. But this still allows to track the phone number
  9. and IP addresses of subscribers, which may be useful for "white label"
  10. DSL reselling.
  11. """
  12. class Meta:
  13. verbose_name = 'ligne xDSL'
  14. verbose_name_plural = 'lignes xDSL'
  15. # URL namespace associated to this configuration type, to build URLs
  16. # in various view. Should also be defined in urls.py. Here, we don't
  17. # define any view, so there's no need for an URL namespace.
  18. #url_namespace = "dsl"
  19. phone_number = models.CharField(max_length=20,
  20. verbose_name='phone number',
  21. help_text="Phone number associated to the DSL line")
  22. def __unicode__(self):
  23. return self.phone_number
  24. def subnet_event(self):
  25. # Do something with self.ip_subnet.all() here.
  26. pass