summaryrefslogtreecommitdiff
path: root/help
diff options
context:
space:
mode:
authorjessib <jessib@leap.se>2012-11-26 13:20:42 -0800
committerjessib <jessib@leap.se>2012-11-26 13:20:42 -0800
commita8b8a7b5431f57ebcf295b8d9389d44cc3a49e8e (patch)
tree0dbd7d5bc18cec0a5357a8b06c3363b6fe5717a3 /help
parentfd9dc326e16ed0aa2e182947ed36726dcc89ef3f (diff)
Put tickets in table. This display is still very rough.
Diffstat (limited to 'help')
-rw-r--r--help/app/views/tickets/index.html.haml55
1 files changed, 28 insertions, 27 deletions
diff --git a/help/app/views/tickets/index.html.haml b/help/app/views/tickets/index.html.haml
index 6dc5e90..7f8fa34 100644
--- a/help/app/views/tickets/index.html.haml
+++ b/help/app/views/tickets/index.html.haml
@@ -14,34 +14,35 @@ Create a
%li{:class => ("active" if params[:admin_status] != 'mine')}
= link_to 'all tickets', {:admin_status => 'all', :open_status => params[:open_status]}
.span10
- .table-bordered
- = #TODO not sure if want table, but playing around with layout here.
- %ul.nav.nav-tabs
- %li{:class => ("active" if params[:open_status] != 'closed' and params[:open_status] != 'all')}
- = link_to 'open issues', {:open_status => 'open', :admin_status => params[:admin_status]}
- %li{:class => ("active" if params[:open_status] == 'closed')}
- = link_to 'closed issues', {:open_status => 'closed', :admin_status => params[:admin_status]}
- = #%a{:href => "#"} closed issue
- %li{:class => ("active" if params[:open_status] == 'all')}
- = link_to 'open & closed issues', {:open_status => 'all', :admin_status => params[:admin_status]}
- %ul.nav.nav-pills
- = #TODO-pull-right isn't working as i want, but want this to the right of tabs within the same div/table
- %li
- = link_to 'created at'
- %li{:class=> ("active" if true)}
- = link_to 'updated at'
-
- .table-bordered
+ .row
+ .span6
+ %ul.nav.nav-tabs
+ %li{:class => ("active" if params[:open_status] != 'closed' and params[:open_status] != 'all')}
+ = link_to 'open issues', {:open_status => 'open', :admin_status => params[:admin_status]}
+ %li{:class => ("active" if params[:open_status] == 'closed')}
+ = link_to 'closed issues', {:open_status => 'closed', :admin_status => params[:admin_status]}
+ = #%a{:href => "#"} closed issue
+ %li{:class => ("active" if params[:open_status] == 'all')}
+ = link_to 'open & closed issues', {:open_status => 'all', :admin_status => params[:admin_status]}
+ .span4
+ %ul.nav.nav-pills.pull-right
+ %li
+ = link_to 'created at'
+ %li{:class=> ("active" if true)}
+ = link_to 'updated at'
+ %table.table-striped.table-bordered.table-hover
+ %tbody
- @tickets.each do |ticket|
- %p
- = link_to ticket.title, ticket
- created:
- = ticket.created_at.to_s(:short)
- updated:
- = ticket.updated_at.to_s(:short)
- comments by:
- = ticket.commenters
- = paginate @tickets
+ %tr
+ %td
+ = link_to ticket.title, ticket
+ created:
+ = ticket.created_at.to_s(:short)
+ updated:
+ = ticket.updated_at.to_s(:short)
+ comments by:
+ = ticket.commenters
+ = paginate @tickets
%div{"data-pjax-container" => ""}
/ PJAX updates will go here