Added lesson-curriculum relation.
[edumed.git] / catalogue / templatetags / catalogue_tags.py
1 from django import template
2 from django.utils.datastructures import SortedDict
3 from ..models import Lesson, Section
4 from librarian.dcparser import WLURI, Person
5
6 register = template.Library()
7
8
9 @register.inclusion_tag("catalogue/snippets/carousel.html")
10 def catalogue_carousel():
11     return {
12     }
13
14 @register.inclusion_tag("catalogue/snippets/section_buttons.html")
15 def catalogue_section_buttons():
16     return {
17         "object_list": Section.objects.all()
18     }
19
20 @register.inclusion_tag("catalogue/snippets/section_box.html")
21 def section_box(section):
22     lessons = SortedDict()
23     for lesson in section.lesson_set.all():
24         if lesson.level not in lessons:
25             newdict = SortedDict()
26             newdict['synthetic'] = []
27             newdict['course'] = []
28             lessons[lesson.level] = newdict
29         if lesson.type not in lessons[lesson.level]:
30             lessons[lesson.level][lesson.type] = []
31         lessons[lesson.level][lesson.type].append(lesson)
32     return {
33         "lessons": lessons,
34     }
35
36 @register.inclusion_tag("catalogue/snippets/lesson_nav.html")
37 def lesson_nav(lesson):
38     if lesson.type == 'course':
39         root = lesson.section
40         siblings = root.lesson_set.filter(type='course')
41     else:
42         root = None
43         siblings = Lesson.objects.filter(type=lesson.type)
44     return {
45         "lesson": lesson,
46         "root": root,
47         "siblings": siblings,
48     }
49
50 @register.inclusion_tag("catalogue/snippets/lesson_link.html")
51 def lesson_link(uri):
52     return {'lesson': Lesson.objects.get(slug=WLURI(uri).slug)}
53
54 @register.filter
55 def person_list(persons):
56     return u", ".join(Person.from_text(p).readable() for p in persons)
57
58
59 # FIXME: Move to fnpdjango
60 import feedparser
61 import datetime
62 @register.inclusion_tag('catalogue/latest_blog_posts.html')
63 def latest_blog_posts(feed_url, posts_to_show=5):
64     try:
65         feed = feedparser.parse(str(feed_url))
66         posts = []
67         for i in range(posts_to_show):
68             pub_date = feed['entries'][i].updated_parsed
69             published = datetime.date(pub_date[0], pub_date[1], pub_date[2] )
70             posts.append({
71                 'title': feed['entries'][i].title,
72                 'summary': feed['entries'][i].summary,
73                 'link': feed['entries'][i].link,
74                 'date': published,
75                 })
76         return {'posts': posts}
77     except:
78         return {'posts': []}