summaryrefslogtreecommitdiff
path: root/src/fauxton/app/templates/documents/doc_field_editor.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/fauxton/app/templates/documents/doc_field_editor.html')
-rw-r--r--src/fauxton/app/templates/documents/doc_field_editor.html16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/fauxton/app/templates/documents/doc_field_editor.html b/src/fauxton/app/templates/documents/doc_field_editor.html
index 494e72121..c9ce32b43 100644
--- a/src/fauxton/app/templates/documents/doc_field_editor.html
+++ b/src/fauxton/app/templates/documents/doc_field_editor.html
@@ -44,7 +44,7 @@ the License.
<td class="key"><input type="text" class="input-large" value='' /></td>
<td class="value"><input type="text" class="input-xxlarge" value='' /></td>
</tr>
- <% _.each(doc.attributes, function(value, key) { %>
+ <% _.each(doc, function(value, key) { %>
<tr>
<td class="select"><input type="checkbox" /></td>
<td class="key">
@@ -53,6 +53,20 @@ the License.
<td class="value"><input type="text" class="input-xxlarge" value='<%= JSON.stringify(value) %>' /></td>
</tr>
<% }); %>
+ <tr>
+ <th colspan="3">
+ Attachments
+ </th>
+ </tr>
+ <%_.each(attachments, function (att) { %>
+ <tr>
+ <td class="select"><input type="checkbox" /></td>
+ <td colspan="2">
+ <a href="<%= att.url %>" target="_blank"> <%= att.fileName %> </a>
+ <span> <%= att.contentType %>, <%= formatSize(att.size)%> </span>
+ </td>
+ </tr>
+ <% }) %>
</tbody>
</table>
<a class="btn btn-small new" style="margin-left: 64px"><i class="icon-plus"></i> New field</a>