]> projects.mako.cc - selectricity-live/blobdiff - app/views/layouts/hc.rhtml
I have added the acts_as_authenticated plugin to code, and have gotten VERY BASIC...
[selectricity-live] / app / views / layouts / hc.rhtml
index b090bf181433dead747e15bc9351463fdbf019ba..2408083e6bc14df624225056a8f92d1e3110987f 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?