[{INCLUDE templates/header.html}]
<script type="text/javascript">
$(document).ready(function(){
$("#selectall").click(function(){
selectAll(this, "selected_accesspaths[]");
});
});
</script>
[{IFDEF INFO}]<div class="infomsg">${INFOMSG}</div>[{/IFDEF}]
[{IFDEF WARNING}]<div class="warningmsg">${WARNINGMSG}</div>[{/IFDEF}]
[{IFDEF ERROR}]<div class="errormsg">${ERRORMSG}</div>[{/IFDEF}]
<h1>TR{Access-Path management}}</h1>
<p class="hdesc">TR{Here you can see a list of all access path, which are defined in your subversion configuration.}}</p>
<div class="datatablesearch">
TR{Filter}}:
<input type="text" class="filterbox" onkeyup="filterDataTable('accesspathlist',1,this.value);">
</div>
<form action="accesspathslist.php" method="POST">
<table id="accesspathlist" class="datatable">
<thead>
<tr>
<th width="20">[{IFDEF ACCESSPATH_EDIT_ACTIVE && ACL_accesspaths_delete}]<input type="checkbox" id="selectall">[{/IFDEF}]</th>
<th>TR{Access-Path}}</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="2">
<table class="datatableinline">
<colgroup>
<col width="50%">
<col width="50%">
</colgroup>
<tr>
<td>
[{IFDEF ACCESSPATH_EDIT_ACTIVE && ACL_accesspaths_delete}]
<input type="submit" name="delete" value="TR{Delete}}" class="delbtn" onclick="return deletionPrompt('TR{Are you sure?}}');">
[{/IFDEF}]
</td>
<td align="right">
[{IFDEF SHOW_ASSIGNABLE_USERS}]
<select name="selected_users[]">
<option value="">--- TR{Set project manager}} ---</option>
[{LOOP users}]
<option>${users}{name}</option>
[{/LOOP}]
</select>
<input type="submit" name="assign_projectmanager" value="TR{Assign}}">
[{/IFDEF}]
</td>
</tr>
</table>
</td>
</tr>
</tfoot>
<tbody>
[{LOOP paths}]
<tr>
<td>[{IFDEF ACCESSPATH_EDIT_ACTIVE && ACL_accesspaths_delete}]<input type="checkbox" name="selected_accesspaths[]" value="${paths}{path}">[{/IFDEF}]</td>
<td>
<a href="accesspathview.php?accesspath=${paths}{encodedPath}">${paths}{path}</a><br>
<small>TR{Managers}}: ${paths}{managersAsString}</small>
</td>
</tr>
[{/LOOP}]
</tbody>
</table>
</form>
[{INCLUDE templates/footer.html}]