Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Report card colours to be updated #196

Open
mahalakshme opened this issue Jun 7, 2024 · 0 comments
Open

Report card colours to be updated #196

mahalakshme opened this issue Jun 7, 2024 · 0 comments

Comments

@mahalakshme
Copy link
Contributor

mahalakshme commented Jun 7, 2024

Need:

  • With 9.0 release, the colours of the text in report card are going to become black from white. Hence with some of the existing report card colours, the text will not be visible. So some of the report card colours need to be changed such that it is visible with both black and white text colours since we do graded release and at a point multiple versions of the app will be used by users.

AC:

  • Update the colours for the cards mentioned here:
    https://docs.google.com/spreadsheets/d/1299mpA8al5B7nKlh9RjIcMK5Ku2JLuF-JOtKepo20zE/edit#gid=155574426
  • Need to be fixed also for the corresponding UAT orgs
  • Active live orgs I assumed and hence checked for these: 'JSCS', 'Shelter', 'Goonj', 'Adolescent Sewa Rural', 'Swadhar swayam', 'CTRITH IPH', 'Sakhi App', 'Calcutta Kids', 'Ward Implementation and Management Committee - AKRSP','Periodshala', 'APF Odisha','PoWER', 'Mobile Creches', 'JSS', 'Chashma', 'Yenepoya', 'JSS Singrauli', 'Lend a Hand India', 'JSSCP'. So kindly check for any missed orgs in this list as well.

Details to identify the card with issues and colour compatibility:

Query used:

select dscm.id as dashboard_section_card_mapping_id, o.name as org_name, ds.name as dashboard_section_name, rc.name as report_card_name, rc.colour as report_card_color
from dashboard_section ds
         inner join dashboard_section_card_mapping dscm on ds.id = dscm.dashboard_section_id
         inner join report_card rc on dscm.card_id = rc.id
         inner join organisation o on ds.organisation_id = o.id where
    o.name in ('JSCS', 'Shelter', 'Goonj', 'Adolescent Sewa Rural', 'Swadhar swayam', 'CTRITH IPH', 'Sakhi App', 'Calcutta Kids', 'Ward Implementation and Management Committee - AKRSP','Periodshala', 'APF Odisha','PoWER', 'Mobile Creches', 'JSS', 'Chashma', 'Yenepoya', 'JSS Singrauli', 'Lend a Hand India', 'JSSCP')
                                     and rc.is_voided=false and dscm.is_voided= false and ds.is_voided=false;

and used the results in a HTML to identify colour compatibility

@mahalakshme mahalakshme changed the title Colors to be updated Report card colours to be updated Jun 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant