beef-admin_area 0.3.7 → 0.3.8
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/app/views/admin/users/index.html.erb +20 -20
- data/beef-admin_area.gemspec +2 -2
- metadata +4 -4
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.8
|
@@ -41,24 +41,24 @@
|
|
41
41
|
|
42
42
|
|
43
43
|
<% content_for :sub_content do %>
|
44
|
-
<h2>Filter
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
44
|
+
<h2>Filter</h2>
|
45
|
+
<div>
|
46
|
+
<% form_for :search, :html => {:method => :get} do |f| %>
|
47
|
+
<p>
|
48
|
+
<%= f.label :name %><br/>
|
49
|
+
<%= f.text_field :name, :value => (@criteria[:name] || '') %>
|
50
|
+
</p>
|
51
|
+
<p>
|
52
|
+
<%= f.label :email %><br/>
|
53
|
+
<%= f.text_field :email, :value => (@criteria[:email] || '') %>
|
54
|
+
</p>
|
55
|
+
<p>
|
56
|
+
<%= f.submit "Filter", :disable_with => 'Filtering...' %>
|
57
|
+
<%= f.label :query_type_all, "all" %>
|
58
|
+
<%= f.radio_button :query_type, 'all', :checked => ('checked' if (@criteria[:query_type] || 'all') == 'all'), :title => 'Match ALL criteria above.' %>
|
59
|
+
<%= f.label :query_type_any, "any" %>
|
60
|
+
<%= f.radio_button :query_type, 'any', :checked => ('checked' if (@criteria[:query_type] || '') == 'any'), :title => 'Match ANY criteria above.' %>
|
61
|
+
</p>
|
62
|
+
<% end -%>
|
63
|
+
</div>
|
64
64
|
<% end %>
|
data/beef-admin_area.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{beef-admin_area}
|
8
|
-
s.version = "0.3.
|
8
|
+
s.version = "0.3.8"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Steve England"]
|
12
|
-
s.date = %q{2010-07-
|
12
|
+
s.date = %q{2010-07-26}
|
13
13
|
s.email = %q{steve@wearebeef.co.uk}
|
14
14
|
s.extra_rdoc_files = [
|
15
15
|
"LICENSE",
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beef-admin_area
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 3
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 0.3.
|
9
|
+
- 8
|
10
|
+
version: 0.3.8
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Steve England
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-07-
|
18
|
+
date: 2010-07-26 00:00:00 +01:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|