added new panel and its markup
This commit is contained in:
parent
de51ce9d7c
commit
c81fdef366
src/main/java/se/su/dsv/scipro/admin/panels
@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html
|
||||
xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd">
|
||||
<body>
|
||||
<wicket:panel>
|
||||
<!--<div wicket:id="container">-->
|
||||
<!--<table class="rounded-corner">-->
|
||||
<!--<thead>-->
|
||||
<!--<tr>-->
|
||||
<!--<th class="rounded-left-top">Application period</th><th>End date</th><th>Number of students</th><th>Number of project ideas</th>-->
|
||||
<!--</tr>-->
|
||||
<!--</thead>-->
|
||||
<!--<tbody>-->
|
||||
<!--<tr wicket:id="periodList">-->
|
||||
<!--<!– <td><span wicket:id="name"></span></</td> –>-->
|
||||
<!--<td wicket:id="applicationPeriodName"></td>-->
|
||||
<!--<td wicket:id="applicationPeriodEndDate"></td>-->
|
||||
<!--<td wicket:id="numberOfStudents"></td>-->
|
||||
<!--<td wicket:id="numberOfPIs"></td>-->
|
||||
<!--</tr>-->
|
||||
<!--</tbody>-->
|
||||
<!--<tfoot>-->
|
||||
<!--<tr>-->
|
||||
<!--<td colspan="6" class="rounded-foot"> </td>-->
|
||||
<!--</tr>-->
|
||||
<!--</tfoot>-->
|
||||
<!--</table>-->
|
||||
<!--</div>-->
|
||||
<!--<div wicket:id="nav"></div>-->
|
||||
</wicket:panel>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,17 @@
|
||||
package se.su.dsv.scipro.admin.panels;
|
||||
|
||||
import org.apache.wicket.markup.html.panel.Panel;
|
||||
|
||||
/**
|
||||
* @author: fred-fri
|
||||
* date: 2012 03 26
|
||||
*/
|
||||
public class ProjectIdeaStatisticsPanel extends Panel {
|
||||
|
||||
private static final long serialVersionUID = -8964934681195275340L;
|
||||
|
||||
public ProjectIdeaStatisticsPanel(String id) {
|
||||
super(id);
|
||||
}
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user