Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
atdb-ldv
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
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
atdb-ldv
Merge requests
!94
adding multi hold/resume functionality in query
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Merged
adding multi hold/resume functionality in query
dev-nico
into
master
Overview
0
Commits
1
Pipelines
0
Changes
5
Merged
Nico Vermaas
requested to merge
dev-nico
into
master
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
5
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
b087a4d1
1 commit,
4 years ago
5 files
+
26
−
11
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
atdb/taskdatabase/templates/query/action_buttons_per_row.html
+
2
−
2
Options
<a
href=
"{% url 'task-details' record.pk 0 %}"
class=
"btn btn-primary btn-sm"
role=
"button"
><i
class=
"fas fa-list"
></i>
Details
</a>
{% if record.resume %}
<a
href=
"{% url 'task-hold-resume' record.pk 'hold'
0
%}"
class=
"btn btn-warning btn-sm"
role=
"button"
><i
class=
"fas fa-pause"
></i>
hold
</a>
<a
href=
"{% url 'task-hold-resume' record.pk 'hold' %}"
class=
"btn btn-warning btn-sm"
role=
"button"
><i
class=
"fas fa-pause"
></i>
hold
</a>
{% endif %}
{% if not record.resume %}
<a
href=
"{% url 'task-hold-resume' record.pk 'resume'
0
%}"
class=
"btn btn-success btn-sm"
role=
"button"
><i
class=
"fas fa-play"
></i>
start
</a>
<a
href=
"{% url 'task-hold-resume' record.pk 'resume' %}"
class=
"btn btn-success btn-sm"
role=
"button"
><i
class=
"fas fa-play"
></i>
start
</a>
{% endif %}
\ No newline at end of file
Loading