34 lines
No EOL
1.1 KiB
Text
34 lines
No EOL
1.1 KiB
Text
- content_for :head do
|
|
:javascript
|
|
$(function() {
|
|
$('#query').observe_field(1, function() {
|
|
$('#user_search').submit();
|
|
});
|
|
$('#sort_by_ordergroups').click(function() {
|
|
$('#user_search').submit();
|
|
});
|
|
});
|
|
|
|
%h1 Mitglieder der Foodcoop
|
|
%p
|
|
%i
|
|
Hier kannst Du den Mitgliedern Deiner Foodcoop eine Nachricht schreiben.
|
|
%br/
|
|
Damit Deine Kontaktdaten einzusehen sind, musst Du sie unter
|
|
= link_to "Einstellungen", my_profile_path
|
|
freigeben.
|
|
|
|
.left_column{:style => "width:100%"}
|
|
.box_title
|
|
%h2 Übersicht
|
|
.column_content
|
|
- unless params[:sort_by_ordergroups]
|
|
#user_filter{:style => "float:left; margin-right:2em;"}
|
|
= form_tag foodcoop_users_path, :method => :get, :style=>"display:inline;", :id => 'user_search', :remote => true do
|
|
%label{:for => 'article_name'} Suche nach Name:
|
|
= text_field_tag(:query, params[:query], :size => 10 )
|
|
|
|
Nach Bestellgruppen sortieren:
|
|
= check_box_tag :sort_by_ordergroups, 1, params[:sort_by_ordergroups]
|
|
#users
|
|
= render :partial => "users" |