OLD | NEW |
1 <!-- This Source Code is subject to the terms of the Mozilla Public License | 1 <!-- This Source Code is subject to the terms of the Mozilla Public License |
2 - version 2.0 (the "License"). You can obtain a copy of the License at | 2 - version 2.0 (the "License"). You can obtain a copy of the License at |
3 - http://mozilla.org/MPL/2.0/. --> | 3 - http://mozilla.org/MPL/2.0/. --> |
4 | 4 |
5 <html xmlns="http://www.w3.org/1999/xhtml"> | 5 <html xmlns="http://www.w3.org/1999/xhtml"> |
6 <body> | 6 <body> |
7 <h2>Recent changes:</h2> | 7 <h2>Recent changes:</h2> |
| 8 <dl> |
8 {%- for change in changes %} | 9 {%- for change in changes %} |
9 <h3>#{{change.revision}}: {{change.date}} {{change.author}}</h3> | 10 <dt><strong>#{{change.revision}}: {{change.date}} {{change.author}}</strong></dt
> |
10 <p>{{change.description|buglinks}}</p> | 11 <dd style="margin-bottom: 10px;">{{change.description|buglinks}}</dd> |
11 {%- endfor %} | 12 {%- endfor %} |
| 13 </dl> |
12 </body> | 14 </body> |
13 </html> | 15 </html> |
OLD | NEW |