Answer the question
In order to leave comments, you need to log in
How to make django pdf file upload?
How to make pdf file upload through django admin?
models.py
class PostLecture(models.Model):
title = models.CharField(max_length = 200)
pdf = models.FileField()
time = models.DateTimeField(auto_now_add = True)
def __unicode__(self):
return self.title
def get_absolute_url(self):
return reverse("posts:detail", kwargs={"id": self.id})
class Meta:
ordering = ['-time']
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question