Sha256: 3dad3ed179160e42027150f74bbfc7cc4624dfc2c77e44f1f64c99966c5782e9

Contents?: true

Size: 1.28 KB

Versions: 15

Compression:

Stored size: 1.28 KB

Contents

<div class="home">
  <div class="row">
    <div class="col-md-6 col-md-offset-3 text-center">

      <%= form_tag search_path, :id => 'home_searchform', :method => 'get' do %>
          <%= text_field_tag :q, @search_query, :id => 'search', :placeholder => 'What are you looking for?' %>
          <%= submit_tag 'Search' %>

          <div id="advanced">
            <%= link_to('Advanced search','#advancedSearchModal', data: { toggle: 'modal', target: '#advancedSearchModal' }) %>
          </div>
      <% end %>

    </div>
    <div class="col-md-6 col-md-offset-3 legend">
      <p class="text-center">
        <%= link_to 'Latest accounts', kaui_engine.accounts_path %> /
        <%= link_to 'Latest invoices', kaui_engine.invoices_path %> /
        <%= link_to 'Latest payments', kaui_engine.payments_path %>
      </p>
    </div>
  </div>
  <span class="duck_help">Accounts are searched by default. For complex searches, use <b>Advanced Search</b>.</span>

</div>

<%= render :partial => 'advanced_search_modal' %>

<script language="javascript">
    $(document).ready(function() {
        function alignToSearch() {
            var leftPosition = $('#search').position().left + 25;
            $('#advanced').css('padding-left',leftPosition);
        }

        alignToSearch();
    });
</script>

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
kaui-3.0.4 app/views/kaui/home/index.html.erb
kaui-3.0.2 app/views/kaui/home/index.html.erb
kaui-2.2.1 app/views/kaui/home/index.html.erb
kaui-3.0.1 app/views/kaui/home/index.html.erb
kaui-2.1.0 app/views/kaui/home/index.html.erb
kaui-2.0.4 app/views/kaui/home/index.html.erb
kaui-2.0.3 app/views/kaui/home/index.html.erb
kaui-2.0.2 app/views/kaui/home/index.html.erb
kaui-2.0.1 app/views/kaui/home/index.html.erb
kaui-2.0.0 app/views/kaui/home/index.html.erb
kaui-1.4.1 app/views/kaui/home/index.html.erb
kaui-1.4.0 app/views/kaui/home/index.html.erb
kaui-1.3.0 app/views/kaui/home/index.html.erb
kaui-1.2.0 app/views/kaui/home/index.html.erb
kaui-1.1.0 app/views/kaui/home/index.html.erb