diff --git a/static/index.html b/static/index.html index 8d17e21..5fba33a 100644 --- a/static/index.html +++ b/static/index.html @@ -33,7 +33,17 @@ $.get("/about", function(ret) { // Load upload widget contented.init("#surrogate-area", function(items) { - console.log(items); + + var $table = $(""); + for (var i = 0; i < items.length; ++i) { + $table.append($("").append([ + $("
").text(items[i]), + $("").html("view"), + $("").html("info") + ])) + } + $("#surrogate-area").html($table); + });