Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
main
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Simone Rossi
main
Commits
86469ea5
Commit
86469ea5
authored
Aug 30, 2017
by
Daniele Venzano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix page titles
parent
be94a7ce
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
2 deletions
+4
-2
base_user.html
zoe_api/web/templates/base_user.html
+0
-1
execution_inspect.html
zoe_api/web/templates/execution_inspect.html
+1
-0
execution_new.html
zoe_api/web/templates/execution_new.html
+2
-1
home_user.html
zoe_api/web/templates/home_user.html
+1
-0
No files found.
zoe_api/web/templates/base_user.html
View file @
86469ea5
{% extends "base.html" %}
{% block content %}
<h1>
Zoe - Analytics on demand
</h1>
{{ super() }}
{% endblock %}
...
...
zoe_api/web/templates/execution_inspect.html
View file @
86469ea5
{% extends "base_user.html" %}
{% block title %}Inspect execution {{ e.name }}{% endblock %}
{% block content %}
<h1>
Zoe - Analytics on demand
</h1>
<h2>
Detailed information for execution {{ e.name }}
</h2>
<div
id=
"contents"
>
<ul>
...
...
zoe_api/web/templates/execution_new.html
View file @
86469ea5
{% extends "base_user.html" %}
{% block title %}New execution definition{% endblock %}
{% block content %}
<h1>
Zoe - Analytics on demand
</h1>
<h
1>
New execution
</h1
>
<h
2>
New execution
</h2
>
<form
method=
"post"
action=
"{{ reverse_url('execution_start') }}"
enctype=
"multipart/form-data"
>
<label>
Execution name:
<input
type=
"text"
name=
"exec_name"
></label><br>
<label>
Application description:
<input
type=
"file"
name=
"file"
></label><br>
...
...
zoe_api/web/templates/home_user.html
View file @
86469ea5
{% extends "base_user.html" %}
{% block title %}Home{% endblock %}
{% block content %}
<h1>
Zoe - Analytics on demand
</h1>
<div
id=
"my_executions"
>
<h3>
Executions
</h3>
...
...
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