Subversion Repositories WebE

Compare Revisions

Last modification

Regard whitespace Rev 29 → Rev 30

/trunk/WebContent/admin/relTypeList.jsp
1,4 → 1,7
<%@taglib uri="/struts-tags" prefix="s"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<c:set var="contextPath" value="${pageContext.request.contextPath}" />
 
<html>
<head>
<title>Beziehungstypen bearbeiten</title>
9,8 → 12,8
<p>Hier k&ouml;nnen Sie die Beziehungstypen anpassen.</p>
 
<s:if test="relTypeList.size() == 0">
<p>Keine Benutzer gefunden</p>
</s:if>
<p>Keine Beziehungstypen gefunden</p>
</s:if><s:else>
<table>
<tr>
<th>Bezeichnung A =&lt; B</th>
23,13 → 26,18
<td><s:url id="editURL" action="editRelType">
<s:param name="id" value="%{relationshipId}"></s:param>
</s:url> <s:a href="%{editURL}">&Auml;ndern</s:a></td>
</s:url> <s:a href="%{editURL}">
<img src="${contextPath}/resources/icons/page_white_edit.png" alt="edit" />
</s:a></td>
<td><s:url id="deleteURL" action="deleteRelType">
<s:param name="id" value="%{relationshipId}"></s:param>
</s:url> <s:a href="%{deleteURL}">L&ouml;schen</s:a></td>
</s:url> <s:a href="%{deleteURL}">
<img src="${contextPath}/resources/icons/delete.png" alt="delete" />
</s:a></td>
</tr>
</s:iterator>
</table>
 
</s:else>
</body>
</html>