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.
13 lines
415 B
13 lines
415 B
- @title = App.title
|
|
- @location = capture do
|
|
= link_to(App.title, index_url, :accesskey => 'z') + "›";
|
|
= link_to("Usuários", users_path)
|
|
- if @user and @user.id
|
|
= "› " + link_to(h(@user.name), user_url(@user))
|
|
- @title = @title + " - #{h(@user.display_name)}"
|
|
|
|
- @left_panel = render('widgets/menu_navigation') + render('widgets/menu_user')
|
|
- @content = yield
|
|
|
|
= render 'layouts/base'
|