diff options
author | azul <azul@riseup.net> | 2012-12-20 01:53:32 -0800 |
---|---|---|
committer | azul <azul@riseup.net> | 2012-12-20 01:53:32 -0800 |
commit | 69a6c34998328b2168053184e1e487b60e1cc536 (patch) | |
tree | 361b0be19535b0d7ddb3eaac7acdfcebc7a0e3a8 /app | |
parent | e899e5c3f33acb3228fac295013d7cc8b6e4eb04 (diff) | |
parent | dc827d0a80360aa245d4d724dc42bc47571faea6 (diff) |
Merge pull request #5 from leapcode/feature/removing-email-aliases
Removing email aliases - proper error display
Diffstat (limited to 'app')
-rw-r--r-- | app/views/tabs/_nav.html.haml | 2 | ||||
-rw-r--r-- | app/views/tabs/_tab.html.haml | 2 | ||||
-rw-r--r-- | app/views/tabs/_tabs.html.haml | 4 |
3 files changed, 8 insertions, 0 deletions
diff --git a/app/views/tabs/_nav.html.haml b/app/views/tabs/_nav.html.haml new file mode 100644 index 0000000..6974c06 --- /dev/null +++ b/app/views/tabs/_nav.html.haml @@ -0,0 +1,2 @@ +%li{:class => (:active if nav == @anchor)} + %a{:href => "##{nav}", 'data-toggle' => 'tab'}= t("tabs.#{nav}") diff --git a/app/views/tabs/_tab.html.haml b/app/views/tabs/_tab.html.haml new file mode 100644 index 0000000..adab666 --- /dev/null +++ b/app/views/tabs/_tab.html.haml @@ -0,0 +1,2 @@ +.tab-pane{:id => tab, :class => (:active if tab == @anchor)} + = content_for tab diff --git a/app/views/tabs/_tabs.html.haml b/app/views/tabs/_tabs.html.haml new file mode 100644 index 0000000..8b01dbd --- /dev/null +++ b/app/views/tabs/_tabs.html.haml @@ -0,0 +1,4 @@ +%ul.nav.nav-tabs + = render :partial => '/tabs/nav', :collection => tabs +.tab-content + = render :partial => '/tabs/tab', :collection => tabs |