-<div>
- <h1 class="title"><%= title %></h1>
- <table>
- <% properties.forEach(function(propertyDesc) { %>
- <tr>
- <td><%= propertyDesc.label %></td>
- <td><%= propertyValues[propertyDesc.name] %></td>
- <% }); %>
- <tr>
- <td><%= gettext('Draft Saved') %></td>
- <td class="draft"></td>
- </tr>
- </table>
-</div>
\ No newline at end of file
+<li><%= gettext('Draft Saved') %>: <span class="draft"></span></li>
+<% properties.forEach(function(propertyDesc) { %>
+ <li>
+ <%= propertyDesc.label %>: <%= propertyValues[propertyDesc.name] %>
+ </li>
+<% }); %>