diff --git a/templates/default/admin.html.ep b/templates/default/admin.html.ep index e64df95..0c8d6fb 100644 --- a/templates/default/admin.html.ep +++ b/templates/default/admin.html.ep @@ -1,4 +1,50 @@ -% title $self->l('Administration'); -%= include 'header' +% title $self->l('ADMINISTRATION'); +%=include 'header' +%=include 'public_toolbar' +
+%= include 'noscript' +
+
+ <%=l 'EXISTING_ROOMS' %> +
+ + + + + + + + + + <% + my @rooms = $self->get_all_rooms(); + foreach my $room (@rooms){ + my $data = $self->get_room($room); + %> + + + + + + <% } %> + +
+ <%=l 'ROOM_ID' %> + + <%=l 'ROOM_NAME' %> + + <%=l 'MANAGE' %> +
+ <%= $data->{id} %> + + <%= $room %> + + + <%=l 'MANAGE' %> + +
+
+
+%=include 'js_common' %=include 'footer'