Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
zoe
main
Commits
478630f2
Commit
478630f2
authored
Sep 14, 2017
by
Daniele Venzano
Browse files
Fix missing start end times in execution inspect
parent
bb86ce58
Pipeline
#4522
passed with stages
in 2 minutes and 51 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
zoe_api/web/templates/execution_inspect.html
View file @
478630f2
{% extends "base_user.html" %}
{% block title %}Inspect execution {{ e.name }}{% endblock %}
{% block custom_head %}
<script
src=
"/static/moment.min.js"
type=
"application/javascript"
></script>
<script
src=
"/static/moment-timezone.min.js"
type=
"application/javascript"
></script>
<script>
function
format_timestamp
(
ts
)
{
var
m
=
moment
.
utc
(
ts
);
m
.
local
();
document
.
write
(
m
.
calendar
());
}
</script>
{% endblock %}
{% block content %}
<h1>
Zoe - Analytics on demand
</h1>
<h2>
Detailed information for execution {{ e.name }}
</h2>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment