mirror of
https://github.com/r4sas/py-i2phosts
synced 2025-01-09 22:38:08 +00:00
17 lines
568 B
Python
17 lines
568 B
Python
from django.db import models
|
|
|
|
from pyi2phosts.lib.validation import validate_i2purl
|
|
|
|
class ExternalSource(models.Model):
|
|
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)
|
|
|
|
def __unicode__(self):
|
|
return self.name
|
|
|