Skip to content

Commit b8499d1

Browse files
committed
Fix permissions (replace obsolete 'Process' by 'Edit')
1 parent def50ee commit b8499d1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

share/roundup/templates/devel/html/milestone.item.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
<tr>
2323
<th class="required">Title</th>
2424
<td colspan="5"
25-
tal:condition="python: request.user.hasPermission('Process')"
25+
tal:condition="python: request.user.hasPermission('Edit')"
2626
tal:content="structure python:context.title.field(size=60)">
2727
title
2828
</td>
2929
<td colspan="5"
30-
tal:condition="python: not request.user.hasPermission('Process')"
30+
tal:condition="python: not request.user.hasPermission('Edit')"
3131
tal:content="structure context/title/plain">
3232
title
3333
</td>
@@ -49,12 +49,12 @@
4949
escription', 500, 400)">status</a>
5050
</th>
5151
<td colspan="5"
52-
tal:condition="python: request.user.hasPermission('Process')"
52+
tal:condition="python: request.user.hasPermission('Edit')"
5353
tal:content="structure context/status/menu">
5454
status
5555
</td>
5656
<td colspan="5"
57-
tal:condition="python: not request.user.hasPermission('Process')"
57+
tal:condition="python: not request.user.hasPermission('Edit')"
5858
tal:content="structure context/status/plain">
5959
status
6060
</td>
@@ -63,7 +63,7 @@
6363
<tr>
6464
<th>Bugs</th>
6565
<td colspan="2"
66-
tal:condition="python: request.user.hasPermission('Process')">
66+
tal:condition="python: request.user.hasPermission('Edit')">
6767
<table>
6868
<tr>
6969
<td>Add: <input name=":add:bugs" size="20" /></td>
@@ -83,7 +83,7 @@
8383
</table>
8484
</td>
8585
<td colspan="2"
86-
tal:condition="python: not request.user.hasPermission('Process')">
86+
tal:condition="python: not request.user.hasPermission('Edit')">
8787
<span tal:condition="context/bugs"
8888
tal:repeat="bug context/bugs">
8989
<br/>View:

0 commit comments

Comments
 (0)