Private
Public Access
1
0

adding command to store blog posts locally

This commit is contained in:
Sander Roosendaal
2019-10-17 22:09:01 +02:00
parent ed02c7c52b
commit 45666d22a7
3 changed files with 70 additions and 2 deletions

View File

@@ -3707,3 +3707,7 @@ class PlannedSessionCommentForm(ModelForm):
}
class BlogPost(models.Model):
title = models.TextField(max_length=300)
link = models.TextField(max_length=300)
date = models.DateField()