make the controllers' manager; fix errors, make it working

This commit is contained in:
bkfox
2016-07-19 18:32:07 +02:00
parent 5a77b4d4ea
commit f87c660878
10 changed files with 191 additions and 41 deletions

View File

@ -356,12 +356,11 @@ class Logs(ListByDate):
track = log.related
post = ListItem(
title = '{artist} — {name}'.format(
artist = track.artist,
name = track.name,
),
title = track.name,
subtitle = track.artist,
date = log.date,
content = track.info,
css_class = 'track',
info = '',
)
return post