mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
360 B
14 lines
360 B
11 years ago
|
class UserAndProfilesLowerTabs < Netzke::Basepack::TabPanel
|
||
|
component :user_profiles
|
||
|
component :user_logs
|
||
|
component :user_stats
|
||
|
|
||
|
def configure(c)
|
||
|
c.prevent_header = true
|
||
|
c.items = [ :user_logs,
|
||
|
{ netzke_component: :user_profiles, title: "User Profiles" },
|
||
|
{ netzke_component: :user_stats, title: "User Stats" }]
|
||
|
super
|
||
|
end
|
||
|
end
|