How do I exclude Policy and Constraint form the table and just have the status?

Created on 5 October 2022, over 2 years ago
Updated 13 April 2024, 12 months ago

The current table is way to unwieldy and too much for our needs. We'd like to just strip the table down to status, but I see no way to do this in the templates...

πŸ’¬ Support request
Status

Postponed: needs info

Version

3.0

Component

User interface

Created by

πŸ‡ΊπŸ‡ΈUnited States jive01

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡ΊπŸ‡ΈUnited States Kristen Pol Santa Cruz, CA, USA

    I'm going through all the 8.x issues.

    As the 8.x is no longer supported, I'm postponing this issue for now and need feedback as to whether or not this issue is relevant to 4.0.x.

    If it is, please reopen and change the version, and make sure the issue summary is clear and complete. If it's not, please close.

    If there is no response to this in a month addressing the above, it can be closed.

  • πŸ‡«πŸ‡·France mably

    We do it in CSS like this:

    #password-policy-status table tr td:first-child,
    #password-policy-status table tr th:first-child,
    #password-policy-status table tr td:last-child,
    #password-policy-status table tr th:last-child {
      display: none;
    }

    We also remove the header using:

    #password-policy-status table thead tr:first-child {
      display: none;
    }

    And also remove the "success" lines to keep only the "failed" ones using:

    #password-policy-status table tr.password-policy-constraint-passed {
      display: none;
    }
  • πŸ‡«πŸ‡·France mably

    Implemented in the Password Policy Extras β†’ module, for those interested.

Production build 0.71.5 2024