added new panel and its markup

This commit is contained in:
Fredrik Friis 2012-03-26 12:02:42 +09:00
parent de51ce9d7c
commit c81fdef366
2 changed files with 49 additions and 0 deletions
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">-->
<!--&lt;!&ndash; <td><span wicket:id="name"></span></</td> &ndash;&gt;-->
<!--<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">&nbsp;</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);
}
}