-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,43 @@ | ||
<h1 tal:replace="structure here/manage_page_header">Header</h1> | ||
|
||
<h2 tal:define="form_title string:Add Workspace Local Role Manager" | ||
tal:replace="structure here/manage_form_title">Form Title</h2> | ||
<h2 tal:define=" | ||
form_title string:Add Workspace Local Role Manager; | ||
" | ||
tal:replace="structure here/manage_form_title" | ||
>Form Title</h2> | ||
|
||
<p class="form-help"> | ||
<p class="form-help"> | ||
Install a Workspace local role manager. This plugin will enable | ||
workspaces to provide the correct local rules for users assigned | ||
to that workspace. | ||
</p> | ||
</p> | ||
|
||
<form action="manage_addWorkspaceLocalRoleManager" method="POST"> | ||
<form action="manage_addWorkspaceLocalRoleManager" | ||
method="POST" | ||
> | ||
<table> | ||
<tr> | ||
<td class="form-label">Id</td> | ||
<td><input type="text" name="id"/></td> | ||
<td><input name="id" | ||
type="text" | ||
/></td> | ||
</tr> | ||
<tr> | ||
<td class="form-label">Title</td> | ||
<td><input type="text" name="Title"/></td> | ||
<td><input name="Title" | ||
type="text" | ||
/></td> | ||
</tr> | ||
<tr> | ||
<td colspan="2"> | ||
<div class="form-element"> | ||
<input type="submit" value="Add local role manager"/> | ||
<input type="submit" | ||
value="Add local role manager" | ||
/> | ||
</div> | ||
</td> | ||
</tr> | ||
</table> | ||
</form> | ||
|
||
<h1 tal:replace="structure here/manage_page_footer">Footer</h1> | ||
|