Mercurial > hg > LGServices
comparison src/main/webapp/pages/home.jsp @ 27:3b3e2963c8f7 dev_dataverse4
new: rewrite LGServices for LGDataverse with the new dataverse, dataverse4.0
author | Zoe Hong <zhong@mpiwg-berlin.mpg.de> |
---|---|
date | Tue, 08 Sep 2015 16:33:31 +0200 |
parents | 3e62083dbcbf |
children | 74fe1518bc5c |
comparison
equal
deleted
inserted
replaced
26:ce2e3f2814c0 | 27:3b3e2963c8f7 |
---|---|
39 <table style="width: 90%; margin-left: auto;margin-right: auto;" class="pageTable"> | 39 <table style="width: 90%; margin-left: auto;margin-right: auto;" class="pageTable"> |
40 <tr> | 40 <tr> |
41 <td><label class="tableTitle">Branch ID</label></td> | 41 <td><label class="tableTitle">Branch ID</label></td> |
42 <td><label class="tableTitle">Book ID</label></td> | 42 <td><label class="tableTitle">Book ID</label></td> |
43 <td><label class="tableTitle">Book Name</label></td> | 43 <td><label class="tableTitle">Book Name</label></td> |
44 <td><label class="tableTitle">Period</label></td> | |
44 <td><label class="tableTitle">Section Name</label></td> | 45 <td><label class="tableTitle">Section Name</label></td> |
45 <td><label class="tableTitle">Label</label></td> | 46 <td><label class="tableTitle">Label</label></td> |
46 <td><label class="tableTitle">Contributors</label></td> | 47 <td><label class="tableTitle">Contributors</label></td> |
47 <td><label class="tableTitle">Last Modified</label></td> | 48 <td><label class="tableTitle">Last Modified</label></td> |
48 <td><label class="tableTitle">Extraction Interface</label></td> | 49 <td><label class="tableTitle">Extraction Interface</label></td> |
50 <td><label class="tableTitle">Manage</label></td> | 51 <td><label class="tableTitle">Manage</label></td> |
51 <td><label class="tableTitle">Delete</label></td> | 52 <td><label class="tableTitle">Delete</label></td> |
52 </tr> | 53 </tr> |
53 | 54 |
54 <% for(LGBranch branch : sessionBean.getHomePage().getBranches()) { %> | 55 <% for(LGBranch branch : sessionBean.getHomePage().getBranches()) { %> |
55 | |
56 <tr> | 56 <tr> |
57 <td><%=branch.getId() %></td> | 57 <td><%=branch.getId() %></td> |
58 <td><%=branch.getBook().getId() %></td> | 58 <td><%=branch.getBook().getId() %></td> |
59 <td><%=branch.getBook().getName() %></td> | 59 <td><%=branch.getBook().getName() %></td> |
60 <td><%=branch.getSection().getName() %></td> | 60 <td><%=branch.getBook().getPeriod() %></td> |
61 | |
62 <td><%=branch.getSection().getName() %> | |
63 <% if (branch.isDeprecated()) { %> | |
64 <label style="color:red">*** This is a deprecated section ***</label> | |
65 <% } %> | |
66 </td> | |
67 | |
61 <td><%=branch.getLabel() %></td> | 68 <td><%=branch.getLabel() %></td> |
62 <td> | 69 <td> |
63 <table style="width:120px;"> | 70 <table style="width:120px;"> |
64 <% for(String contributor : branch.getContributorsNameList()) { %> | 71 <% for(String contributor : branch.getContributorsNameList()) { %> |
65 <tr><td><label><%= contributor %></label></td></tr> | 72 <tr><td><label><%= contributor %></label></td></tr> |