OLD | NEW |
1 {% macro change(c) %} | 1 {% macro change(c) %} |
2 | 2 |
3 <table class="info"> | 3 <table class="info"> |
4 {% set row_class=cycler('alt','') %} | 4 {% set row_class=cycler('alt','') %} |
5 <tr class="{{ row_class.next() }}"> | 5 <tr class="{{ row_class.next() }}"> |
6 <td class="left">Changed by</td> | 6 <td class="left">Changed by</td> |
7 <td><b>{{ c.who|email }}</b></td> | 7 <td><b>{{ c.who|email }}</b></td> |
8 </tr> | 8 </tr> |
9 <tr class="{{ row_class.next() }}"> | 9 <tr class="{{ row_class.next() }}"> |
10 <td class="left">Changed at</td> | 10 <td class="left">Changed at</td> |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 {% for p in c.properties %} | 60 {% for p in c.properties %} |
61 <tr class="{{ loop.cycle('alt') }}"> | 61 <tr class="{{ loop.cycle('alt') }}"> |
62 <td class="left">{{ p[0]|capitalize|e }}</td> | 62 <td class="left">{{ p[0]|capitalize|e }}</td> |
63 <td>{{ p[1]|e }}</td> | 63 <td>{{ p[1]|e }}</td> |
64 </tr> | 64 </tr> |
65 {% endfor %} | 65 {% endfor %} |
66 </table> | 66 </table> |
67 {% endif %} | 67 {% endif %} |
68 {%- endmacro %} | 68 {%- endmacro %} |
69 | 69 |
70 {% macro box_contents(who, url, pageTitle, revision) -%} | 70 {% macro box_contents(who, url, pageTitle, revision, project) -%} |
71 <a href="{{ url }}" title="{{ pageTitle|e }}">{{ who|user }}</a><br>r{{ revision
}} | 71 <a href="{{ url }}" title="{{ pageTitle|e }}">{{ who|user }}</a><br>r{{ revision
}} |
72 {%- endmacro %} | 72 {%- endmacro %} |
OLD | NEW |