Skip to content

Commit

Permalink
[FEATURE] Add edit button in "Manage Exclusions"
Browse files Browse the repository at this point in the history
Make it possible to edit an Exclude record in the
"Manage Exclusions" list.

Resolves: #227
  • Loading branch information
sypets committed Dec 4, 2022
1 parent 60abd25 commit 818e1a2
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Resources/Private/Templates/Backend/ManageExclusions.html
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,9 @@
<core:icon identifier="{tableHeader.reason.icon}"/>
</f:if>
</th>
<f:if condition="{hasPermission}">
<th></th>
</f:if>
</tr>
</thead>
<tbody class="check">
Expand All @@ -178,6 +181,7 @@
</a>
<br/>
<br/>

<f:for each="{brokenLinks}" as="item">
<tr>
<f:if condition="{hasPermission}">
Expand Down Expand Up @@ -217,6 +221,13 @@
</f:else>
</f:if>
</td>
<f:if condition="{hasPermission}">
<td>
<be:link.editRecord class="btn btn-primary" uid="{item.uid}" title="" table="tx_brofix_exclude_link_target" returnUrl="{f:be.uri(route: 'web_brofix', parameters: '{id: currentPage}')}">
<core:icon identifier="actions-open" size="small"/>
</be:link.editRecord>
</td>
</f:if>
</tr>
</f:for>
</tbody>
Expand Down

0 comments on commit 818e1a2

Please sign in to comment.