Files
web2.0-backend/nobotapp/models.py
T
2019-06-08 17:27:48 +03:00

10 lines
242 B
Python

from django.db import models
class CaptchaUrl(models.Model):
slug = models.SlugField(primary_key=True)
destination = models.URLField()
def __str__(self):
return "[Redirect {} -> {}]".format(self.slug, self.destination)