96 lines
2.7 KiB
Plaintext
96 lines
2.7 KiB
Plaintext
<%@ page language="java"%>
|
|
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
|
|
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
|
|
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
|
|
|
|
<html:html locale="true">
|
|
<head>
|
|
<html:base />
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
|
|
<title>Comic Application</title>
|
|
</head>
|
|
<body>
|
|
<table border="0" width="100%" height="100%" cellpadding="5">
|
|
<colgroup>
|
|
<col width="10%">
|
|
<col width="80%">
|
|
<col width="10%">
|
|
</colgroup>
|
|
<!-- Kopfbereich -->
|
|
<tr bgcolor="lightgrey" height="10%">
|
|
<td align="center" colspan="3"><b>Liste der Comics</b></td>
|
|
</tr>
|
|
<!-- Hauptbereich -->
|
|
<tr>
|
|
<!-- Linker Navigationsbereich -->
|
|
<td bgcolor="tan" valign="top" with="100">
|
|
<% out.println(com.peetz.comics.navigation.MenuLinks.getInstance().toString()); %>
|
|
</td>
|
|
<td bgcolor="wheat" valign="top">
|
|
<p>Comic Manager</p>
|
|
Show the comic artist list
|
|
|
|
<table border="1">
|
|
<tbody>
|
|
<%-- set the header --%>
|
|
<tr>
|
|
<td>Artist name</td>
|
|
<td> </td>
|
|
<td> </td>
|
|
</tr>
|
|
<%-- check if publisher exists and display message or iterate over books --%>
|
|
<logic:empty name="artistListForm" property="artistViews">
|
|
<tr>
|
|
<td colspan="5">No artists available</td>
|
|
</tr>
|
|
</logic:empty>
|
|
<logic:notEmpty name="artistListForm" property="artistViews">
|
|
<logic:iterate name="artistListForm" property="artistViews" id="artist">
|
|
<tr>
|
|
<%-- print out the book informations --%>
|
|
<td><bean:write name="artist" property="name" /></td>
|
|
<%-- print out the edit and delete link for each artist --%>
|
|
<td><html:link action="artistEdit.do?do=editArtist" paramName="artist"
|
|
paramProperty="id" paramId="id">Edit</html:link></td>
|
|
<td><html:link action="artistEdit.do?do=deleteArtist" paramName="artist"
|
|
paramProperty="id" paramId="id">Delete</html:link></td>
|
|
</tr>
|
|
</logic:iterate>
|
|
</logic:notEmpty>
|
|
<%-- end interate --%>
|
|
|
|
<%-- if publishers cannot be found display a text --%>
|
|
<logic:notPresent name="artist">
|
|
<tr>
|
|
<td colspan="5">No artists found.</td>
|
|
</tr>
|
|
</logic:notPresent>
|
|
|
|
</tbody>
|
|
</table>
|
|
<br>
|
|
<%-- add and back to menu button --%>
|
|
<html:button property="add" onclick="location.href='../artistEdit.do?do=addArtist'">Add a new artist</html:button>
|
|
|
|
<html:button property="back" onclick="location.href='default.do'">Back to menu
|
|
</html:button>
|
|
|
|
|
|
|
|
|
|
</td>
|
|
<!-- Rechter Navigationsbereich -->
|
|
<td bgcolor="tan" with="15%"> </td>
|
|
</tr>
|
|
<!-- Fussbereich -->
|
|
<tr bgcolor="lightgrey" height="10%">
|
|
<td align="right" colspan="3">
|
|
<p>Ingenieurbüro Thomas Peetz</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html:html>
|