diff options
author | Alban Gruin | 2017-09-28 13:30:38 +0200 |
---|---|---|
committer | Alban Gruin | 2017-09-28 13:30:38 +0200 |
commit | cd2c473be7ebc33d7992441ae3ff1bf52785488c (patch) | |
tree | d32ec9d68746a6f970c696ab43bc9c39c2bb2f0c | |
parent | 436099ebef2acb8a3965cc39b07d99f61fa1eba2 (diff) |
Ajout du type de cours dans le nom de l’évèmenent ICS
-rw-r--r-- | feeds.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -80,7 +80,7 @@ class IcalFeed(Feed): "dtstart": item.begin, "dtend": item.end, "dtstamp": item.last_update, - "summary": item.name, + "summary": item.name + " (" + item.type + ")", "location": format_rooms(item.rooms.all())} |