1
0

Initial Commit

This commit is contained in:
2017-12-31 03:40:56 +03:00
commit 4dbb509588
18 changed files with 343 additions and 0 deletions

9
app/models.py Normal file
View File

@@ -0,0 +1,9 @@
from django.db import models
# Create your models here.
class Setting(models.Model):
name = models.CharField(max_length=100)
language = models.CharField(max_length=5)
string = models.TextField()