Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
internewshid
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
aptivate
client-projects
internewshid
Commits
a746edab
Commit
a746edab
authored
4 years ago
by
Ian Hallworth
Browse files
Options
Downloads
Patches
Plain Diff
Filter select ids are now unique
parent
b2186c32
No related branches found
Branches containing commit
No related tags found
2 merge requests
!210
Staging
,
!202
Filter select ids are now unique
Pipeline
#11026
passed
4 years ago
Stage: sanity
Stage: lint
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
internewshid/hid/templates/hid/tabs/filters/language.html
+1
-1
1 addition, 1 deletion
internewshid/hid/templates/hid/tabs/filters/language.html
internewshid/hid/templates/hid/tabs/filters/risk.html
+1
-1
1 addition, 1 deletion
internewshid/hid/templates/hid/tabs/filters/risk.html
with
2 additions
and
2 deletions
internewshid/hid/templates/hid/tabs/filters/language.html
+
1
−
1
View file @
a746edab
...
...
@@ -2,7 +2,7 @@
{% load i18n %}
<div
class=
"filter-language input-group"
>
<label
class=
"control-label"
for=
"language-selector"
>
{% trans "Language" %}
</label>
<select
id=
"l
ocation
-selector"
name=
"language"
class=
"form-control"
>
<select
id=
"l
anguage
-selector"
name=
"language"
class=
"form-control"
>
<option
value=
"All Languages"
selected=
"selected"
>
{% trans "All Languages" %}
</option>
{% for language in languages.items %}
<option
value=
"{{ language }}"
{%
if
language =
=
request.GET.language
%}
selected=
"selected"
{%
endif
%}
>
{{ language }}
</option>
...
...
This diff is collapsed.
Click to expand it.
internewshid/hid/templates/hid/tabs/filters/risk.html
+
1
−
1
View file @
a746edab
...
...
@@ -2,7 +2,7 @@
{% load i18n %}
<div
class=
"filter-risk input-group"
>
<label
class=
"control-label"
for=
"risk-selector"
>
{% trans "Risk" %}
</label>
<select
id=
"
location
-selector"
name=
"risk"
class=
"form-control"
>
<select
id=
"
risk
-selector"
name=
"risk"
class=
"form-control"
>
<option
value=
"All Risks"
selected=
"selected"
>
{% trans "All Risks" %}
</option>
{% for risk in risks.items %}
<option
value=
"{{ risk }}"
{%
if
risk =
=
request.GET.risk
%}
selected=
"selected"
{%
endif
%}
>
{{ risk }}
</option>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment