Small fixes

* data format
* replace js link to a tag
* css fixes
* changed link structure to /{number}/{name}/
This commit is contained in:
Carlos Galindo 2020-12-07 18:18:47 +01:00
parent 9f4e8b89fc
commit ae5e6b6cf0
5 changed files with 34 additions and 11 deletions

View file

@ -224,7 +224,7 @@ class Audio:
def __init__(self, date, audio_file):
assert isinstance(date, datetime)
self.date = date
self.date_text = date.strftime("%A %d de %B del %Y")
self.date_text = date.strftime("%A %-d de %B del %Y")
self.audio_file = audio_file
def __str__(self):