Usability improved. Nothing to show messages for issues, MR

This commit is contained in:
Dmitriy Zaporozhets 2012-03-10 23:41:05 +02:00
parent bd7359b50e
commit a10ad7183e
5 changed files with 30 additions and 5 deletions

View file

@ -33,7 +33,11 @@
= hidden_field_tag :status, params[:f]
= search_field_tag :issue_search, nil, { :placeholder => 'Search', :class => 'issue_search' }
%ul#issues-table.unstyled= render "issues"
%ul#issues-table.unstyled
= render "issues"
- if @issues.blank?
%li
%p.padded Nothing to show here
:javascript
var href = $('.issue_search').parent().attr('action');

View file

@ -2,7 +2,7 @@
SSH Keys
= link_to "Add new", new_key_path, :class => "btn small right"
%hr
%br
%table#keys-table.zebra-striped.borders
- @keys.each do |key|

View file

@ -1,5 +1,14 @@
%h3= @key.title
%h3
Public key:
= @key.title
%small
created at
= @key.created_at.stamp("Aug 21, 2011")
.back_link
= link_to keys_path do
← To keys list
%hr
%pre= @key.key
.actions
= link_to 'Remove', @key, :confirm => 'Are you sure?', :method => :delete, :class => "btn danger delete-key"

View file

@ -22,5 +22,10 @@
= link_to project_merge_requests_path(@project, :f => 1) do
All
%ul.unstyled= render @merge_requests
%ul.unstyled
= render @merge_requests
- if @merge_requests.blank?
%li
%p.padded Nothing to show here

View file

@ -1,7 +1,14 @@
.media-grid
= link_to "#" do
= image_tag gravatar_icon(@user.email, 90), :class => "thumbnail"
%h3.media_h= @user.name
%h3.media_h
= @user.name
%br
%small
= @user.email
.right
%p.alert-message.block-message You can change your avatar at gravatar.com
%hr