mailr/themes/olive/views/contacts/index.html.erb

28 lines
636 B
Plaintext
Raw Normal View History

2011-07-29 20:05:47 +02:00
<% content_for :sidebar do %>
2011-09-09 22:10:25 +02:00
<%= content_for_sidebar %>
2011-07-29 20:05:47 +02:00
<% end %>
<% content_for :title do %>
2011-08-16 20:05:58 +02:00
- <%= t(:contacts,:scope=>:contact) %>
2011-07-29 20:05:47 +02:00
<% end %>
<div class="block" id="block-tables">
2011-09-16 19:44:29 +02:00
<div class="secondary-navigation">
<%= raw main_navigation(:contacts_tab) %>
</div>
<div class="content">
<%= form_tag(contacts_ops_path,{:name=>'contacts'})%>
<% if @contacts.size.zero? %>
<h3><%= t(:no_entries,:scope=>:contact) %></h3>
<%= raw single_action('create_new','contact','plus.png') %>
</form>
<% else %>
<%= render :partial => 'ops' %>
<%= render :partial => 'list' %>
</form>
<% end %>
<%= render :partial => 'external' %>
</div>
2011-07-29 20:05:47 +02:00
</div>
2011-08-16 20:05:58 +02:00