Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <img src="{{Object.picture.url}}"/>
  2.  
  3. <img src="{{ posts.title_picture.url }}"/>
  4.  
  5. <img src="{{title_picture.url}}"/>
  6.  
  7. class Post(models.Model):
  8. title = models.CharField(max_length=255, blank=True, null=True)
  9. title_picture = models.FileField(blank=True,null=True)
  10.  
  11. class IndexView(ListView):
  12. model = Post
  13. context_object_name = 'posts'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement