diff --git a/app/assets/stylesheets/home.css.scss b/app/assets/stylesheets/home.css.scss index f0ddc68..91ea3d6 100644 --- a/app/assets/stylesheets/home.css.scss +++ b/app/assets/stylesheets/home.css.scss @@ -1,3 +1,4 @@ // Place all the styles related to the home controller here. // They will automatically be included in application.css. // You can use Sass (SCSS) here: http://sass-lang.com/ +table, td { vertical-align: top } diff --git a/app/views/home/index.html.erb b/app/views/home/index.html.erb index eb528b1..1607704 100644 --- a/app/views/home/index.html.erb +++ b/app/views/home/index.html.erb @@ -1,5 +1,4 @@

Welcome to the HeatSync Labs Members App.

- <% if !user_signed_in? then %>

You can sign up to become a member here!

<% end %> @@ -11,6 +10,9 @@ <% if user_signed_in? && current_user.member.to_i < current_user.member_level.to_i then %>

Looks like we haven't acknowledged a recent payment for you yet. This could be because we're slow, or this app just got started, but if in doubt please see your profile for payment instructions, or consider updating your membership level to something accurate.
Thanks for supporting HeatSync!

<% end %> + + + + + +
<% if ((can? :read, @recent_user_names) && (@recent_user_names.count > 1)) then %>

New People:

    @@ -32,3 +34,18 @@
    # of Computers in this DB:
    <%= @num_macs %> (<%= @recent_macs %> seen today)
    + +
+ +

Member Resources

+
    +
  • <%= link_to "Wiki", "http://wiki.heatsynclabs.org" %>
  • +
  • <%= link_to "Discussion Group", "http://groups.google.com/group/heatsynclabs" %>
  • +
  • <%= link_to "IRC", "irc://irc.freenode.net#heatsynclabs" %>
  • +
  • <%= link_to "Live Webcams", "http://live.heatsynclabs.org/" %>
  • +
  • Lab Phone: (480) 751-1929
  • +
+
diff --git a/db/migrate/20130209103457_add_marketing_source_to_users.rb b/db/migrate/20130209103457_add_marketing_source_to_users.rb new file mode 100644 index 0000000..f91f427 --- /dev/null +++ b/db/migrate/20130209103457_add_marketing_source_to_users.rb @@ -0,0 +1,5 @@ +class AddMarketingSourceToUsers < ActiveRecord::Migration + def change + add_column :users, :marketing_source, :string + end +end