added level to projectdetailspanel
This commit is contained in:
parent
44039d68b2
commit
e7bd6c4ec9
src/main/java/se/su/dsv/scipro/project/panels
@ -13,6 +13,8 @@
|
||||
</h5>
|
||||
<div><b>Project status: </b></div>
|
||||
<div wicket:id="status"></div>
|
||||
<div><b>Level: </b></div>
|
||||
<div wicket:id="level"></div>
|
||||
<div><b>Daisy start date </b></div>
|
||||
<div wicket:id="daisyStartDateLabel"></div>
|
||||
<div><b>Title: </b></div>
|
||||
|
@ -39,6 +39,8 @@ public class ProjectDetailsPanel extends Panel {
|
||||
add(new Label("status", "This project is " + project.getProjectStatus().toString()));
|
||||
}
|
||||
|
||||
add(new Label("level", project.getProjectClass().getName()));
|
||||
|
||||
if (project.getDaisyStartDate()==null){
|
||||
add(new Label("daisyStartDateLabel", "Cannot get Daisy start date"));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user