Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hypha
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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
ots
hypha
Merge requests
!23
Add ReviewOpinion delete functionality to review sidebar (#3565)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add ReviewOpinion delete functionality to review sidebar (#3565)
lfc-merge-upstream
into
lfc-main
Overview
0
Commits
15
Pipelines
0
Changes
2
Merged
Frank Duncan
requested to merge
lfc-merge-upstream
into
lfc-main
1 year ago
Overview
0
Commits
15
Pipelines
0
Changes
2
Expand
Fixes #3527
0
0
Merge request reports
Viewing commit
62d72661
Prev
Next
Show latest version
2 files
+
30
−
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)
Unverified
62d72661
Add assign approver option to paf detail page (#3533)
· 62d72661
Sandeep Chauhan
authored
1 year ago
hypha/apply/projects/templates/application_projects/project_approval_detail.html
+
29
−
0
Options
@@ -120,6 +120,35 @@
{% trans 'Download as DOCX' %}
</a>
</div>
</div>
{% user_can_update_paf_approvers object user request as can_update_paf_approvers %}
{% if can_update_paf_approvers %}
{% if user != project.lead %}
<a
data-fancybox
data-src=
"#change-assigned-paf-approvers"
class=
"button button--bottom-space button--primary button--full-width"
href=
"#"
>
{% trans "Change approver" %}
</a>
<div
class=
"modal"
id=
"change-assigned-paf-approvers"
>
<h4
class=
"modal__project-header-bar"
>
{% trans "Change Approver" %}
</h4>
<p>
{% trans "Selected approver will be notified. On unselecting, every listed member here will be notified." %}
</p>
{% trans "Submit" as submit %}
{% include 'funds/includes/delegated_form_base.html' with form=assign_approvers_form value=submit %}
</div>
{% endif %}
{% endif %}
{% user_can_assign_approvers_to_project object user request as can_assign_paf_approvers %}
{% if can_assign_paf_approvers %}
<a
data-fancybox
data-src=
"#assign-paf-approvers"
class=
"button button--bottom-space button--primary button--full-width"
href=
"#"
>
{% trans "Assign approver" %}
</a>
<div
class=
"modal"
id=
"assign-paf-approvers"
>
<h4
class=
"modal__project-header-bar"
>
{% trans "Assign Approver" %}
</h4>
<p>
{% trans "Selected approver will be notified. On unselecting, every listed member here will be notified." %}
</p>
{% trans "Submit" as submit %}
{% include 'funds/includes/delegated_form_base.html' with form=assign_approvers_form value=submit %}
</div>
{% endif %}
{% if can_update_paf_status %}
<a
data-fancybox
data-src=
"#change-status"
class=
"button button--primary button--full-width {% if user_can_approve %} is-disabled {% endif %}"
href=
"#"
>
{% trans "Update Status" %}
</a>
<div
class=
"modal"
id=
"change-status"
>
Loading