Forum Message UI Improvement (Thesis Board #3470) #61

Merged
tozh4728 merged 20 commits from 3470-forum-msg-ui-improvement into develop 2024-12-19 15:28:23 +01:00
2 changed files with 24 additions and 0 deletions
Showing only changes of commit 74b2396376 - Show all commits

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html xmlns:wicket="http://wicket.apache.org">
<head>
<title></title>
</head>
<body>
<wicket:panel>
<span wicket:id="msgCount"></span>
</wicket:panel>
</body>
</html>

View File

@ -0,0 +1,13 @@
package se.su.dsv.scipro.forum.panels;
import org.apache.wicket.markup.html.basic.Label;
import org.apache.wicket.markup.html.panel.Panel;
public class NumberOfMessagesPanel extends Panel {
public NumberOfMessagesPanel(final String id) {
super(id);
add(new Label("msgCount", " (0)"));
}
}