Well, it seems I forgot to add the acts_as_authenticated to the repository on my...
[selectricity-live] / app / views / layouts / hc.rhtml
index b090bf181433dead747e15bc9351463fdbf019ba..13b2e729109fc1d704d242418b840284a3f2d791 100755 (executable)
@@ -3,7 +3,6 @@
     <head>
         <title><%= @page_title || "Selectricity" %></title>
         <%= stylesheet_link_tag "hc", :media => "all" %>
-        <% #engine_stylesheet 'login_engine' %>
  
         <%= javascript_include_tag "prototype", "effects", "dragdrop", "controls" %>
     </head>
 
            <div id="links">
              <% if session[:user] %>
-               Welcome <strong><%= session[:user].login.capitalize %></strong>
+<% breakpoint %>
+               Welcome <strong><%= User.find(session[:user]).login.capitalize %></strong>
              <% else %>
-               <%= link_to("Login",:controller => "user", :action => "login")
-                %>/<%= link_to("Sign up", :controller => "user", :action => "signup")%>
+               <%= link_to("Login", :controller => "account", :action => "login")
+                %>/<%= link_to("Sign up", :controller => "account", :action => "signup")%>
              <% end %> |
          
              <% if session[:user] %>
-               <%= link_to("Logout", :controller => "user", :action => "logout") %>  |
+               <%= link_to("Logout", :controller => "account", :action => "logout") %>  |
              <% end %>
              
             <%= link_to("Help/About", :controller => "site", :action => "about") %>

Benjamin Mako Hill || Want to submit a patch?