41 lines
826 B
HTML
41 lines
826 B
HTML
{{ define "content" }}
|
|
<p>
|
|
Drag this bookmarklet: <a href="{{ .BookmarkletURL }}">Gropple</a> to your bookmark bar, and click it
|
|
on any page you want to grab the video from.
|
|
</p>
|
|
|
|
{{ range $k, $v := .Downloads }}
|
|
<div>
|
|
<h4>{{ $v.Url }}</h4>
|
|
<table>
|
|
<tr>
|
|
<th>state</th>
|
|
<td>{{ $v.State }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>percent</th>
|
|
<td>{{ $v.Percent }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>files</th>
|
|
<td>{{ range $i, $f := $v.Files }}{{ $f }} {{ end }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>exit code</th>
|
|
<td>{{ $v.ExitCode }}</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<pre>
|
|
{{ range $i, $l := $v.Log }}
|
|
line: {{ $l }}
|
|
{{- end -}}
|
|
</pre>
|
|
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ define "js" }}
|
|
{{ end }} |