Sha256: be230c88487c49c2459ab86a0d89a860dc76ae9b6a474ab67e9ce5147284630c
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 KB
Contents
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!-- ! Excerpted from "Agile Web Development with Rails, 2nd Ed." ! We make no guarantees that this code is fit for any purpose. ! Visit http://www.pragmaticprogrammer.com/titles/rails2 for more book information. --> <html> <head> <title>Administer the Bookstore</title> <%= stylesheet_link_tag "scaffold", "depot", :media => "all" %> </head> <body id="admin"> <div id="banner"> <%= image_tag("logo.png") %> <%= @page_title || "Pragmatic Bookshelf" %> </div> <div id="columns"> <div id="side"> <p> <%= link_to "Products", :controller => 'admin', :action => 'list' %> </p> <p> <%= link_to "List users", :controller => 'login', :action => 'list_users' %> <br/> <%= link_to "Add user", :controller => 'login', :action => 'add_user' %> </p> <p> <%= link_to "Logout", :controller => 'login', :action => 'logout' %> </p> </div> <div id="main"> <% if flash[:notice] -%> <div id="notice"><%= flash[:notice] %></div> <% end -%> <%= yield :layout %> </div> </div> </body> </html>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
amrita2-2.0.2 | sample/depot/app/views/layouts/admin.rhtml |