This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
django-stock/homepage/models.py

9 lines
199 B
Python

from django.db import models
class Application(models.Model):
name = models.CharField(max_length=200)
url = models.CharField(max_length=20)
def __str__(self):
return self.name