hi,
i cannot download file upladed by admin.
i have this model:
class Smlouvy(models.Model):
note= models.TextField(blank=True)
pdf= models.FileField( upload_to =
'scany/%Y/%m/%d',blank=True,verbose_name="Pdf Filw")
in Admin i upladed file, and file is in correct directory.
/about.me/psjinx
>
>
> On Tue, Jan 22, 2013 at 6:08 AM, grat >wrote:
>
>> hi,
>>
>> i cannot download file upladed by admin.
>>
>> i have this model:
>> class Smlouvy(models.Model):
>> note= models.TextField(blank=True)
>> pdf
Hi,
i have this code:
#Model
class Client(models.Model):
name= models.CharField(max_length=25)
...
class Docs(models.Model):
name= models.CharField(max_length=25)
...
client = models.ForeignKey(Client)
#Admin
class Detail_Doc(admin.StackedInline):
model = Docs
class De
3 matches
Mail list logo