fnp
/
edumed.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
zmiana kolejnosci w menu
[edumed.git]
/
publishers
/
models.py
1
from django.db import models
2
3
class Publisher(models.Model):
4
name = models.CharField(max_length=255)
5
logo = models.ImageField(upload_to='publishers/logo')
6
7
def __unicode__(self):
8
return self.name