poster batch
This commit is contained in:
parent
ea83be1b7f
commit
0191fc1769
2 changed files with 5 additions and 0 deletions
|
@ -545,6 +545,7 @@ examples (config.SITENAME.jsonc) that are part of this pan.do/ra distribution.
|
||||||
"columnRequired": true,
|
"columnRequired": true,
|
||||||
"columnWidth": 180,
|
"columnWidth": 180,
|
||||||
"filter": true,
|
"filter": true,
|
||||||
|
"poster": true,
|
||||||
"sort": true
|
"sort": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -19,6 +19,8 @@ def render_poster(data, poster):
|
||||||
director = ox.decode_html(', '.join(data.get('director', [])))
|
director = ox.decode_html(', '.join(data.get('director', [])))
|
||||||
if not director and "type" in data:
|
if not director and "type" in data:
|
||||||
director = ", ".join(data["type"])
|
director = ", ".join(data["type"])
|
||||||
|
if director == "Voice Over" and data.get("batch"):
|
||||||
|
director = "%s (vo)" % ", ".join(data["batch"])
|
||||||
year = str(data.get('year', ''))
|
year = str(data.get('year', ''))
|
||||||
series = data.get('isSeries', False)
|
series = data.get('isSeries', False)
|
||||||
oxdb_id = data['oxdbId']
|
oxdb_id = data['oxdbId']
|
||||||
|
@ -41,6 +43,8 @@ def render_poster(data, poster):
|
||||||
i = 500
|
i = 500
|
||||||
elif type == "annimation":
|
elif type == "annimation":
|
||||||
i = 600
|
i = 600
|
||||||
|
elif type == "voice over":
|
||||||
|
i = 300
|
||||||
|
|
||||||
if i < 127:
|
if i < 127:
|
||||||
color = (127, i, 0)
|
color = (127, i, 0)
|
||||||
|
|
Loading…
Reference in a new issue