| 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ö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 =< 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}">Ä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ö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> |