3ef0453299
BUG=skia: R=mtklein@google.com Author: jcgregorio@google.com Review URL: https://codereview.chromium.org/363003004
41 lines
933 B
HTML
41 lines
933 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Workspace</title>
|
|
{{template "headercommon.html" .}}
|
|
<link rel='import' type='text/html' href='/res/imp/zoom.html'>
|
|
</head>
|
|
<body>
|
|
<template id=tryTemplate>
|
|
<div class=tries data-try=''>
|
|
<img width=64 height=64 src=''>
|
|
</div>
|
|
</template>
|
|
{{template "titlebar.html" .}}
|
|
{{if .Name}}
|
|
{{template "content.html" .}}
|
|
|
|
<section id=tryHistory>
|
|
</section>
|
|
|
|
<script type='text/javascript'>
|
|
var history_ = {{.Tries}};
|
|
console.log(history_);
|
|
</script>
|
|
<script type='text/javascript'>
|
|
// Set the workspace name so run.js also updates the history.
|
|
var workspaceName = '{{.Name}}';
|
|
</script>
|
|
{{else}}
|
|
<section id=content>
|
|
<h1>Create</h1>
|
|
Create a new workspace:
|
|
<form action='.' method='POST'>
|
|
<p><input type='submit' value='Create'></p>
|
|
</form>
|
|
</section>
|
|
{{end}}
|
|
{{template "footercommon.html" .}}
|
|
</body>
|
|
</html>
|