James Moger
2011-04-07 cebf455f3fd54b72e530942f308097ec54b408cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.gitblit.wicket.panels;
 
import org.apache.wicket.markup.html.basic.Label;
import org.apache.wicket.markup.html.panel.Panel;
 
public class AdminLinksPanel extends Panel {
 
    private static final long serialVersionUID = 1L;
 
    public AdminLinksPanel(String id) {
        super(id);
 
        add(new Label("newRepository", "new repository"));
        add(new Label("newUser", "new user"));
    }
}