Files
openproject/modules/costs/app/views/hourly_rates/edit.html.erb
T
Alexander Brandon Coles e8767481e9 [#70166] Fix accessibility errors found by ERB Lint (#21503)
* Fix GitHub/NoTitleAttribute, LinkHasHref errors

- Replaces `title` attribute with `aria-label` for interactive elements.
- Removes `title` from non-interactive elements.
- Converts `<a>` tags without proper `href` to `<button>` elements,
  using Primer `Button`/`IconButton` where possible.

# Conflicts:
#	app/views/custom_fields/_custom_options.html.erb
#	spec/features/admin/custom_fields/shared_custom_field_expectations.rb
#	spec/features/admin/custom_fields/work_packages/list_spec.rb

* Fix Autocomplete missing errors

* Fix GitHub/NoPositiveTabIndex errors

Removes all positive `tabindex` values.

* Fix Rails/LinkToBlank errors

* Replace toast with Primer Banner on LDAP form

* Add frozen_string_literal

* Ignore erb lint for deprecated files

* Fix linting errors in repository module

* Fix linting errors in budgets and custom actions

* Fix linting errors in member form and 2fa

* Fix linting errors in mcost types and wiki help and storages

* Fix linting errors in multi select filters, ifc viewer, and unsupported browser banner

* Fix failing spec

* Use Primer banner instead of op-toast where ever it is possible

* Use octicon instead of op_icon

* Fix failing tests

* Use no-decoration-on-hover for button links and change the button with only an icon to primer icon button

* Keep webhook response modal activation selector class-based

* use icon button for edit of hourly rate

---------

Co-authored-by: Behrokh Satarnejad <b.satarnejad@openproject.com>
2026-05-07 10:31:10 +02:00

126 lines
4.4 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_edit)} #{I18n.t((@project.nil? ? :caption_default_rate_history_for : :caption_rate_history_for), user: ' ')} #{@user.name}" %>
<%
breadcrumb_items = if @project
[{ href: project_overview_path(@project.identifier), text: @project.name },
{ href: projects_budgets_path(@project.identifier), text: I18n.t(:label_budget_plural) }]
else
[]
end
%>
<%=
render Primer::OpenProject::PageHeader.new do |header|
header.with_title { t(:caption_default_rate_history_for, user: @user.name) }
header.with_breadcrumbs(
[*breadcrumb_items,
t(:caption_default_rate_history_for, user: @user.name)]
)
end
%>
<%- default_rate = @user.current_default_rate -%>
<% if default_rate %>
<p><strong><%= t(:label_current_default_rate) %>:</strong> <%= number_to_currency(default_rate.rate) %></p>
<% end %>
<%= labelled_tabular_form_for @user,
url: { action: "update", project_id: @project },
data: { controller: "subform" },
method: :put do |f| %>
<%= back_url_hidden_field_tag %>
<%= error_messages_for "user" %>
<%- @rates.each do |rate| -%>
<%- @rate = rate -%>
<%= error_messages_for "rate" %>
<%- end -%>
<div class="generic-table--container">
<div class="generic-table--results-container">
<table class="generic-table rates">
<colgroup>
<col>
<col>
<col data-highlight="false">
</colgroup>
<thead>
<tr>
<th>
<div class="generic-table--sort-header-outer">
<div class="generic-table--sort-header">
<span>
<%= Rate.human_attribute_name(:valid_from) %>
</span>
</div>
</div>
</th>
<th class="currency">
<div class="generic-table--sort-header-outer">
<div class="generic-table--sort-header">
<span>
<%= Rate.model_name.human %>
</span>
</div>
</div>
</th>
<th><div class="generic-table--empty-header"></div></th>
</tr>
</thead>
<tbody id="rates_body" class="subform-container" data-subform-target="table">
<%= render partial: "hourly_rates/rate", object: HourlyRate.new(valid_from: Date.current), locals: { templated: true } %>
<%- @rates.each_with_index do |rate, index| -%>
<%= render partial: "rate", object: rate, locals: { index: index } %>
<%- end -%>
</tbody>
</table>
</div>
</div>
<div class="wp-inline-create-button">
<%=
render(
Primer::Beta::Button.new(
scheme: :link,
type: :button,
classes: "add-row-button wp-inline-create--add-link",
data: { action: "subform#addRow" }
)
) do |button|
button.with_leading_visual_icon(icon: :plus)
t(:button_add_rate)
end
%>
</div>
<div class="generic-table--action-buttons">
<%= styled_button_tag t(:button_save), class: "-with-icon icon-checkmark" %>
</div>
<% end %>