Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/template.txt
blob: 5cb8bb89d400cd9a4e21d762fa3baa593deab28e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{% python 
    heading = "="*len(meeting['title'])

    from textwrap import TextWrapper
    def wrap(text, level):
        return TextWrapper(width=72, initial_indent=' '*(level-1)*2, subsequent_indent=' '*level*2, break_long_words=False).fill(text)
%}
${heading}
${meeting.title}
${heading}


${wrap("Meeting started by %s at %s %s. The full logs are available at %s ."%(meeting.owner, time.start, time.timezone, meeting.logsFullURL), 1)}



Meeting summary
---------------

{% for item in agenda %}\
{% choose %}
{% when item.topic.nick %}${wrap("* %s  (%s, %s)"%(item.topic.topic, item.topic.nick, item.topic.time), 1)}{% end %}\
{% otherwise %}${wrap("* %s"%(item.topic.topic), 1)}{% end %}
{% end %}\
{% for note in item.notes %}\
{% choose %}\
{% when note.itemtype == 'LINK' %}${wrap("* %s: %s %s  (%s, %s)"%(note.itemtype, note.url, note.line, note.nick, note.time), 2)}{% end %}\
{% otherwise %}${wrap("* %s: %s  (%s, %s)"%(note.itemtype, note.line, note.nick, note.time), 2)}{% end %}
{% end %}\
{% end %}\
{% end %}

${wrap("Meeting ended at %s %s."%(time.end, time.timezone), 1)}



Action items, by person
-----------------------

{% for attendee in actions_person %}\
* ${attendee.nick}
{% for action in attendee.actions %}\
${wrap("* %s"%action, 2)}
{% end %}
{% end %}

People present (lines said)
---------------------------

{% for attendee in attendees %}\
* ${attendee.nick} (${attendee.count})
{% end %}


Generated by `MeetBot`_ ${meetbot.version}