Notice
Recent Posts
Recent Comments
Link
목록get_object_or_404 (1)
완숙의 블로그
[Django] Week 4_1 pk, path converter, get_object_or_404
블로그 게시판을 바꿔보자! home에서 글자수가 100개만 보이게 ...more 라는 링크달기 링크를 클릭하면 detail.html이 나오도록 1. home에서 글자수가 100개만 보이게 # model.py from django.db import models # Create your models here. class Blog(models.Model): title = models.CharField(max_length=200) pub_date = models.DateTimeField('date published') body = models.TextField() def __str__(self): return self.title 여기서 아래에 추가해준다. def summary(self): retu..
Programing Language/Web_Django
2019. 2. 26. 21:00