Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/template.html
blob: b67b9351cf80388da77cebe458c503a4f162f4d3 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns:py="http://genshi.edgewall.org/">
<head>
 <meta http-equiv="Content-type" content="text/html;charset=UTF-8"/>
 <title>${meeting.title}</title>
 <style type="text/css">
/* This is for the .html in the HTML2 writer */
body {
    font-family: Helvetica, sans-serif;
    font-size:14px;
}
h1 {
    text-align: center;
}
a {
    color:navy;
    text-decoration: none;
    border-bottom:1px dotted navy;
}
a:hover {
    text-decoration:none;
    border-bottom: 0;
    color:#0000B9;
}
hr {
    border: 1px solid #ccc;
}
/* The (nick, time) item pairs, and other body text things. */
.details {
    font-size: 12px;
    font-weight:bold;
}
/* The 'AGREED:', 'IDEA', etc, prefix to lines. */
.itemtype {
    font-style: normal;    /* un-italics it */
    font-weight: bold;
}
/* Example: change single item types.  Capitalized command name.
/* .TOPIC  {  color:navy;  } */
/* .AGREED {  color:lime;  } */

 </style>
</head>

<body>
 <h1>${meeting.title}</h1>
 <span class="details"> Meeting started by ${meeting.owner} at ${time.start} ${time.timezone} (<a href="${meeting.logs}">full logs</a>).</span>

 <h3>Meeting summary</h3>
 <ol>
  <li py:for="item in agenda">
   <b class="TOPIC">${item.topic.topic}</b> <span py:if="item.topic.nick" class="details">(<a href='${meeting.logs}#${item.topic.anchor}'>${item.topic.nick}</a>, ${item.topic.time})</span>
   <ol type="a">
    <py:if test="len(item.notes) > 0">
    <li py:for="note in item.notes">
     <i class="itemtype">${note.itemtype}</i>: 
     <py:choose>
      <py:when test="note.itemtype == 'LINK'">
      <span class="${note.itemtype}">
       <a href="${note.url}">
        <py:choose>
         <py:when test="note.line">${note.line}</py:when>
         <py:otherwise>${note.url}</py:otherwise>
        </py:choose>
       </a>
      </span>
      </py:when>
      <py:otherwise>
       <span class="${note.itemtype}">${note.line}</span>
      </py:otherwise>
     </py:choose>
     <span class="details">(<a href='${meeting.logs}#${note.anchor}'>${note.nick}</a>, ${note.time})</span>
    </li>
    </py:if>
   </ol>
  </li>
 </ol>

 <span class="details">Meeting ended at ${time.end} ${time.timezone} (<a href="${meeting.logs}">full logs</a>).</span>

 <h3>Action items</h3>
 <ol>
  <li py:for="action in actions">${action}</li>
 </ol>

 <h3>Action items, by person</h3>
 <ol>
  <li py:for="attendee in actions_person">${attendee.nick}
   <ol>
    <li py:for="action in attendee.actions">${action}</li>
   </ol>
  </li>
 </ol>

 <h3>People present (lines said)</h3>
 <ol>
  <li py:for="attendee in attendees">${attendee.nick} (${attendee.count})</li>
 </ol>

 <span class="details">Generated by <a href="${meetbot.url}">MeetBot</a> ${meetbot.version}.</span>
</body>
</html>