Initial commit

This commit is contained in:
2022-01-01 18:21:32 +01:00
commit 65702e15ef
33 changed files with 372 additions and 0 deletions

9
projects/models.py Normal file
View File

@@ -0,0 +1,9 @@
from django.db import models
# Create your models here.
class Project(models.Model):
title = models.CharField(max_length=100)
description = models.TextField()
technology = models.CharField(max_length=20)
image = models.CharField(max_length=100)