aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/webtry/templates/workspace.html
blob: 9694a357b105ad0a58193937f0999dbb2d4e850a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!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}};
  </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>