Subversion Repositories WebE

Rev

Rev 26 | Rev 30 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

1
<%@taglib uri="/struts-tags" prefix="s"%>
<html>
<head>
<title>Beziehungstypen bearbeiten</title>
</head>
<body>

<h1>Beziehungstypen</h1>
<p>Hier k&ouml;nnen Sie die Beziehungstypen anpassen.</p>

<s:if test="relTypeList.size() == 0">
<p>Keine Benutzer gefunden</p>
</s:if>
<table>
        <tr>
                <th>Bezeichnung A =&lt; B</th>
                <th>Bezeichnung B =&lt; A</th>
        </tr>
<s:iterator value="relTypeList" status="stat">
        <tr>
                <td><s:property value="nameFrom" /></td>
                <td><s:property value="nameTo" /></td>
                
                <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>
                <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>
        </tr>
</s:iterator>
</table>

</body>
</html>