Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Video AG Infrastruktur
website
Commits
d9b56d5c
Commit
d9b56d5c
authored
Aug 06, 2017
by
Andreas Valder
Browse files
fixed datalist for options at job overview
parent
61888da2
Changes
1
Hide whitespace changes
Inline
Side-by-side
templates/jobs_overview.html
View file @
d9b56d5c
...
...
@@ -85,7 +85,7 @@
<input
list=
"job_type"
name=
"type"
value=
"{{ filter.type }}"
>
<datalist
id=
"job_type"
>
{% for o in filter_values.type %}
<option
value=
"
{{ o.type }}
"
>
<option
>
{{ o.type }}
</option
>
{% endfor %}
</datalist>
</div>
...
...
@@ -94,7 +94,7 @@
<input
list=
"job_worker"
name=
"worker"
value=
"{{ filter.worker }}"
>
<datalist
id=
"job_worker"
>
{% for o in filter_values.worker %}
<option
value=
"
{{ o.worker }}
"
>
<option
>
{{ o.worker }}
</option
>
{% endfor %}
</datalist>
</div>
...
...
@@ -103,7 +103,7 @@
<input
list=
"job_state"
name=
"state"
value=
"{{ filter.state }}"
>
<datalist
id=
"job_state"
>
{% for o in filter_values.state %}
<option
value=
"
{{ o.state }}
"
>
<option
>
{{ o.state }}
</option
>
{% endfor %}
</datalist>
</div>
...
...
Write
Preview
Supports
Markdown
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