mirror of
				https://github.com/fspc/BikeShed-1.git
				synced 2025-10-30 16:35:35 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			360 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			360 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| 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
 |