added nginx as a proxy. Still need to enable ssl.

This commit is contained in:
WGAVermeer
2026-03-25 15:44:17 +01:00
parent 1c545638b9
commit 0610053a3e
12 changed files with 159 additions and 8 deletions

View File

@@ -1,3 +1,20 @@
from django.db import models
# Create your models here.
class Question(models.Model):
question_text = models.CharField(max_length=200)
pub_date = models.DateTimeField("date published")
def __str__(self):
return self.question_text
class Choice(models.Model):
question = models.ForeignKey(Question, on_delete=models.CASCADE)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)
def __str__(self):
return self.choice_text