Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1CAMEL_CASES = { 

2 '@TypeName': 'typeName', 

3 '@Initial': 'initial', 

4 '@Received': 'received', 

5 '@Closed': 'closed', 

6 '@PendingCurrent': 'pendingCurrent', 

7 '@PendingOverDue': 'pendingOverDue', 

8 '@Textbox370': 'pendingTotal', 

9 '@TotalLeft': 'totalLeft', 

10 

11 '@PlannedRC': 'planned', 

12 '@TotalRC': 'totalRc', 

13 '@Sponsored': 'sponsored', 

14 '@Available': 'available', 

15 '@TotalHold': 'hold', 

16 '@TotalDeath': 'death', 

17 

18 '@TotalMale': 'totalMale', 

19 '@TotalFemale': 'totalFemale', 

20} 

21 

22LABELS = { 

23 '@Textbox55': 'Report Date', 

24 

25 '@NotSighted30Days': 'Not Sighted More than 30 Days & Less than 60 Days', 

26 '@NotSighted60Days': 'Not Sighted More than 60 Days & Less than 90 Days', 

27 '@NotSighted90Days': 'Not Sighted More than 90 Days', 

28 '@VisitCompleted': 'Visits Completed in Report Period', 

29 '@SponsorVisitCompleted': 'Sponsor Visits Completed in Report Period', 

30 

31 '@TypeName': 'Type Name', 

32 '@Initial': 'Initial', 

33 '@Received': 'Received', 

34 '@Closed': 'Closed', 

35 '@PendingCurrent': 'Pending Current', 

36 '@PendingOverDue': 'Pending Overdue', 

37 '@Textbox370': 'Pending Total', 

38 

39 '@HealthSatisfactory': 'Health Satisfactory', 

40 '@HealthNotSatisfactory': 'Health Not Satisfactory', 

41 '@Below5Child': '#RC Aged 0 – 59 Months', 

42 '@NotParticipatingHealthNutriActivities': 'Not Participating in Health/Nutrition Activities', # noqa E501 

43 '@NotVarifiedHealthGrowthCard': 'Health/Growth Card Not Verified', 

44 '@NotFollowingGrowthCurve': 'Child Not Following Growth Curve', 

45 '@MUACSevereMalnutrition': 'MUAC Severe Malnutrition', 

46 '@MUACModerateMalnutrition': 'MUAC Acute Malnutrition', 

47 '@MUACPartiallyImmunized': 'Partially Immunized and with No Vaccination in Last 12 Months', # noqa E501 

48 

49 '@PlannedRC': 'Planned RC', 

50 '@TotalRC': 'Actual RC', 

51 '@Sponsored': 'Sponsored', 

52 '@SponsoredMale': 'Male', 

53 '@SponsoredFemale': 'Female', 

54 '@Available': 'Available', 

55 '@AvailableMale': 'Male', 

56 '@AvailableFemale': 'Female', 

57 '@TotalHold': 'Hold', 

58 '@TotalDeath': 'Death', 

59 

60 '@PrimarySchoolAge': '#RC of Primary School Age', 

61 '@PrimarySchoolAgeFormal': 'RC of Primary School Age Involved in Formal Education', # noqa E501 

62 '@PrimarySchoolAgeNonFormal': 'RC of Primary School Age Involved in Non-Formal Education', # noqa E501 

63 '@PrimarySchoolAgeNoEducation': 'RC of Primary School Age Not Involved in Education', # noqa E501 

64 '@SecondarySchoolAge': '#RC of Secondary School Age', 

65 '@SecondarySchoolAgeFormal': 'RC of Secondary School Age Involved in Formal Education', # noqa E501 

66 '@SecondarySchoolAgeNonFormal': 'RC of Secondary School Age Involved in Non-Formal Education', # noqa E501 

67 '@SecondarySchoolAgeVocational': 'RC of Secondary School Age Involved in Vocational Preparation', # noqa E501 

68 '@SecondarySchoolAgeNoEducation': 'RC of Secondary School Age Not Involved in Education or Vocational Preparation', # noqa E501 

69 

70 CAMEL_CASES['@PlannedRC']: 'Planned RC', 

71 CAMEL_CASES['@TotalRC']: 'Actual RC', 

72 CAMEL_CASES['@Sponsored']: 'Sponsored', 

73 CAMEL_CASES['@Available']: 'Available', 

74 CAMEL_CASES['@TotalHold']: 'Total Hold', 

75 CAMEL_CASES['@TotalDeath']: 'Total Death', 

76 CAMEL_CASES['@TotalLeft']: 'Total Left', 

77 

78 CAMEL_CASES['@PendingCurrent']: 'Pending Current', 

79 CAMEL_CASES['@PendingOverDue']: 'Pending Overdue', 

80 

81 CAMEL_CASES['@TotalMale']: 'Total Male', 

82 CAMEL_CASES['@TotalFemale']: 'Total Female', 

83 

84 'total_closed': 'Total Closed', 

85 'closed_on': 'Closed On Time', 

86 'total_rc_temporarily_away': 'Total RC Temporarily Away', 

87 'total_no_of_rc_records_dropped_during_the_month': 'Total no of RC Records Dropped During The Month', 

88}