commit
5809838f35
@ -66,7 +66,7 @@ class Show(TimestampedModel):
|
||||
storage=show_static_storage,
|
||||
upload_to = name_banner,
|
||||
help_text="A banner used for the show's page.",
|
||||
verbose_name="Artwork"
|
||||
verbose_name="Banner"
|
||||
)
|
||||
def __str__(self):
|
||||
return '%s [%s]'%(self.name,self.abbr)
|
||||
@ -132,6 +132,7 @@ class Ban(TimestampedModel):
|
||||
)
|
||||
scope = models.ManyToManyField(
|
||||
Show,
|
||||
blank=True,
|
||||
help_text='The shows this user is banned from interacting with',
|
||||
verbose_name='Banned From',
|
||||
related_name='bans'
|
||||
|
@ -63,6 +63,9 @@ input[type=text], input:not([type=submit]) {
|
||||
max-width: 180px;
|
||||
max-height: 260px;
|
||||
}
|
||||
.show-promo span {
|
||||
display: block;
|
||||
}
|
||||
.blocklayout .block {
|
||||
margin: 15px;
|
||||
box-shadow: 2px 2px 5px #9c9c9c;
|
||||
|
@ -1,3 +1,4 @@
|
||||
Django==1.11.4
|
||||
Pillow==4.2.1
|
||||
dj-database-url==0.4.2
|
||||
requests==2.18.4
|
||||
|
Reference in New Issue
Block a user