Arkestra
Arkestra copied to clipboard
person_events tag enhancement (and possibly others)
Currently the peson_events tag is hardcoded to show only all_forthcoming events, but I wanted to list all people's talks on our people's pages (or maybe limit to the last 5...)
Change the person_events function defn in news_and_events_tags.py to:
def person_events(context, view="all_forthcoming"):
and one line:
instance.view = view
keeps the current behaviour as default, but allows:
{% person_events "archive" %}
to display all events where a person is featured.
possibly some or all of the other variables hard-coded into the instance variable in the person_events function could also be optionally set this way.