Commit 5c3db6f5 by Chris Dodge

Change the Embed column in assest index page to just display the URL

parent dbcb1adf
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
{{uploadDate}} {{uploadDate}}
</td> </td>
<td class="embed-col"> <td class="embed-col">
<input type="text" class="embeddable-xml-input" value='<img src="{{url}}"/>'> <input type="text" class="embeddable-xml-input" value='{{url}}'>
</td> </td>
</tr> </tr>
</script> </script>
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
<th class="thumb-col"></th> <th class="thumb-col"></th>
<th class="name-col">Name</th> <th class="name-col">Name</th>
<th class="date-col">Date Added</th> <th class="date-col">Date Added</th>
<th class="embed-col">Embed</th> <th class="embed-col">URL</th>
</tr> </tr>
</thead> </thead>
<tbody id="asset_table_body"> <tbody id="asset_table_body">
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
${asset['uploadDate']} ${asset['uploadDate']}
</td> </td>
<td class="embed-col"> <td class="embed-col">
<input type="text" class="embeddable-xml-input" value='<img src="${asset['url']}"/>'> <input type="text" class="embeddable-xml-input" value='${asset['url']}'>
</td> </td>
</tr> </tr>
% endfor % endfor
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment