Files
openproject/app/views/workflows/summaries/show.html.erb
T
Alexander Brandon Coles 0b4bcb5d3c Set accessible names on table column headers
capybara_accessible_selectors 0.16 resolves role selectors such as
`:columnheader` by the computed accessible name. In a browser that name
folds in the CSS `text-transform: uppercase` styling and the column
action-menu trigger text, so `have_columnheader("Subject")` no longer
matches a header whose accessible name resolves to "SUBJECT Open menu".

Sets an explicit `aria-label` equal to the plain caption on each header
cell, in both the server-rendered tables and the work package table, so
the accessible name is the column title alone. This also improves screen
reader output, which previously announced the uppercased text and the
menu label.
2026-05-29 19:30:27 +02:00

78 lines
2.8 KiB
Plaintext

<%#-- copyright
OpenProject is an open source project management software.
Copyright (C) the OpenProject GmbH
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License version 3.
OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
Copyright (C) 2006-2013 Jean-Philippe Lang
Copyright (C) 2010-2013 the ChiliProject Team
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
See COPYRIGHT and LICENSE files for more details.
++#%>
<% html_title t(:label_administration), t(:label_workflow_plural), t(:label_workflow_summary) -%>
<%= render Workflows::PageHeaders::SummaryComponent.new %>
<% if @workflow_counts.any? %>
<div class="generic-table--container">
<div class="generic-table--results-container">
<table class="generic-table workflow-table" data-controller="table-highlighting" id="workflow_summary">
<colgroup>
<col data-highlight="false">
<% @roles.size.times do |role| %>
<col>
<% end %>
</colgroup>
<thead class="-sticky">
<tr>
<th><div class="generic-table--empty-header"></div></th>
<% @roles.each do |role| %>
<th aria-label="<%= role.name %>">
<div class="generic-table--sort-header-outer">
<div class="generic-table--sort-header">
<%= content_tag(role.builtin? ? "em" : "span", h(role.name)) %>
</div>
</div>
</th>
<% end %>
</tr>
</thead>
<tbody>
<% @workflow_counts.each do |type, roles| -%>
<tr>
<td><%= h type %></td>
<% roles.each do |role, count| -%>
<td>
<%= link_to((count > 0 ? count : content_tag(:span, "", class: "icon-close icon-context icon-button")), edit_workflow_path(type, role_ids: [role]), title: t(:button_edit)) %>
</td>
<% end -%>
</tr>
<% end -%>
</tbody>
</table>
</div>
</div>
<% else %>
<%= no_results_box %>
<% end %>