- Timestamp:
- 09/24/08 21:29:35 (4 months ago)
- Location:
- trunk/app/views
- Files:
-
- 5 modified
-
layouts/_hosts.html.erb (modified) (1 diff)
-
layouts/_projects.html.erb (modified) (2 diffs)
-
layouts/_recipes.html.erb (modified) (1 diff)
-
layouts/_users.html.erb (modified) (1 diff)
-
projects/_configs.html.erb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/layouts/_hosts.html.erb
r73 r135 2 2 <% if Host.count > 0 %> 3 3 <% for host in Host.find(:all, :order => "name ASC") %> 4 <a href="<%= host_path(host) %>" class="menu_link <%=h active_link_class(host) %>" >4 <a href="<%= host_path(host) %>" class="menu_link <%=h active_link_class(host) %>" title="<%=h host.name %>"> 5 5 <div class="menu_link_title"> 6 6 <%=h host.name %> -
trunk/app/views/layouts/_projects.html.erb
r73 r135 2 2 <% if Project.count > 0 %> 3 3 <% for project in Project.find(:all, :order => "name ASC") %> 4 <a href="<%= project_path(project) %>" class="menu_link <%=h active_link_class(project) %>" >4 <a href="<%= project_path(project) %>" class="menu_link <%=h active_link_class(project) %>" title="<%=h project.name %>"> 5 5 <div class="menu_icons"> 6 6 … … 15 15 <% if project.stages.count > 0 %> 16 16 <% for stage in project.stages %> 17 <a href="<%= project_stage_path(project, stage) %>" class="menu_link <%=h active_link_class(stage) %>" >17 <a href="<%= project_stage_path(project, stage) %>" class="menu_link <%=h active_link_class(stage) %>" title="<%=h stage.name %>"> 18 18 <div class="menu_link_title" style="padding-left: 30px; *padding-left: 33px"><%=h stage.name %></div> 19 19 </a> -
trunk/app/views/layouts/_recipes.html.erb
r73 r135 2 2 <% if Recipe.count > 0 %> 3 3 <% for recipe in Recipe.find(:all, :order => "name ASC") %> 4 <a href="<%= recipe_path(recipe) %>" class="menu_link <%=h active_link_class(recipe) %>" >4 <a href="<%= recipe_path(recipe) %>" class="menu_link <%=h active_link_class(recipe) %>" title="<%=h recipe.name %>"> 5 5 <div class="menu_link_title"> 6 6 <%=h recipe.name %> -
trunk/app/views/layouts/_users.html.erb
r73 r135 2 2 <% if User.count > 0 %> 3 3 <% for user in User.find(:all, :order => "login ASC") %> 4 <a href="<%= user_path(user) %>" class="menu_link <%=h active_link_class(user) %>" >4 <a href="<%= user_path(user) %>" class="menu_link <%=h active_link_class(user) %>" title="<%=h user.login %>"> 5 5 <div class="menu_link_title"> 6 6 <%=h user.login %> -
trunk/app/views/projects/_configs.html.erb
r73 r135 14 14 <tr class="<%= cycle :even, :odd, :name => 'configs' %>"> 15 15 <td><%=h config.name %></td> 16 <td ><%=h hide_password_in_value(config) %></td>16 <td title="<%=h config.value %>"><%=h hide_password_in_value(config) %></td> 17 17 <td><%= config.prompt_status_in_html %></td> 18 18 <td><%= link_to 'Edit', edit_project_project_configuration_path(@project, config) %></td>
