Index: sitescripts/extensions/template/changelog.html |
=================================================================== |
--- a/sitescripts/extensions/template/changelog.html |
+++ b/sitescripts/extensions/template/changelog.html |
@@ -1,13 +1,15 @@ |
<!-- This Source Code is subject to the terms of the Mozilla Public License |
- version 2.0 (the "License"). You can obtain a copy of the License at |
- http://mozilla.org/MPL/2.0/. --> |
<html xmlns="http://www.w3.org/1999/xhtml"> |
<body> |
<h2>Recent changes:</h2> |
+<dl> |
{%- for change in changes %} |
-<h3>#{{change.revision}}: {{change.date}} {{change.author}}</h3> |
-<p>{{change.description|buglinks}}</p> |
+<dt><strong>#{{change.revision}}: {{change.date}} {{change.author}}</strong></dt> |
+<dd style="margin-bottom: 10px;">{{change.description|buglinks}}</dd> |
{%- endfor %} |
+</dl> |
</body> |
</html> |