Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LDV Specification
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
ASTRON SDC
LDV Specification
Merge requests
!51
add 'obs-id' as mandatory filter field
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
add 'obs-id' as mandatory filter field
hotfix/add-filter-constraint
into
main
Overview
4
Commits
2
Pipelines
3
Changes
2
1 unresolved thread
Show all comments
Merged
Fanna Lautenbach
requested to merge
hotfix/add-filter-constraint
into
main
2 years ago
Overview
4
Commits
2
Pipelines
3
Changes
2
1 unresolved thread
Show all comments
Expand
0
0
Merge request reports
Viewing commit
7a580e8c
Prev
Next
Show latest version
2 files
+
10
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
7a580e8c
add constraint and change error form for missing field key
· 7a580e8c
Fanna Lautenbach
authored
2 years ago
ldvspec/lofardata/templates/lofardata/workspecification/create_update.html
+
5
−
1
Options
@@ -204,7 +204,11 @@
The input is invalid:
{% for field, errors in form.errors.items %}
{% for error in errors %}
<li
class=
"text text--red text--faded"
>
{{ field }}: {{ error }}
</li>
{% if field == '__all__' %}
<li
class=
"text text--red text--faded"
>
{{ error }}
</li>
{% else %}
<li
class=
"text text--red text--faded"
>
{{ field }}: {{ error }}
</li>
{% endif %}
{% endfor %}
{% endfor %}
</div>
Loading