1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-01-09 14:28:03 +00:00
py-i2phosts/pyi2phosts/extsources/models.py

17 lines
598 B
Python
Raw Normal View History

from django.db import models
from pyi2phosts.lib.validation import validate_i2purl
class ExternalSource(models.Model):
2015-10-26 18:55:35 +00:00
name = models.CharField(max_length=128, unique=True)
url = models.CharField(max_length=256, validators=[validate_i2purl])
description = models.CharField(max_length=512, blank=True)
last_modified = models.DateTimeField(null=True, blank=True)
last_success = models.DateTimeField(null=True, blank=True)
etag = models.CharField(max_length=256, blank=True)
active = models.BooleanField(default=True)
2015-10-26 18:55:35 +00:00
def __unicode__(self):
return self.name