1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-01-09 14:28:03 +00:00
py-i2phosts/web/extsources/models.py
Hidden Z 3d38fbb9b0 New app "extsources"
Now we keep external hosts.txt sources in django.
2010-10-31 12:26:23 +00:00

17 lines
561 B
Python

from django.db import models
from web.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