models.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  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 = 'DSL line'
  14. # If Django's default pluralisation is not satisfactory
  15. #verbose_name_plural = 'very many DSL lines'
  16. # URL namespace associated to this configuration type, to build URLs
  17. # in various view. Should also be defined in urls.py. Here, we don't
  18. # define any view, so there's no need for an URL namespace.
  19. #url_namespace = "dsl"
  20. phone_number = models.CharField(max_length=20,
  21. verbose_name='phone number',
  22. help_text="Phone number associated to the DSL line")
  23. def __unicode__(self):
  24. return self.phone_number
  25. def subnet_event(self):
  26. # Do something with self.ip_subnet.all() here.
  27. pass