diff --git a/.gitignore b/.gitignore
index fca719b..543e3e7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,4 +2,6 @@
_site/
# I've had problems with deno.lock. It's in my bad books.
-deno.lock
\ No newline at end of file
+deno.lock
+
+/lcc-env/
\ No newline at end of file
diff --git a/data/lcip/inspire-data.xlsx b/data/lcip/inspire-data.xlsx
new file mode 100644
index 0000000..bd4a390
Binary files /dev/null and b/data/lcip/inspire-data.xlsx differ
diff --git a/scripts/lcip/transform.py b/scripts/lcip/transform.py
index a9b4029..b966fda 100644
--- a/scripts/lcip/transform.py
+++ b/scripts/lcip/transform.py
@@ -4,8 +4,8 @@
from thefuzz import process
OUT_DIR = os.path.join('src', '_data', 'viz', 'lcip')
-DATA_DIR = os.path.join('data', 'lcip', 'lcip_grant_stats.xlsx')
-INSPIRE_DATA = os.path.join('data', 'lcip', 'inspire.xlsx')
+# DATA_DIR = os.path.join('data', 'lcip', 'lcip_grant_stats.xlsx')
+INSPIRE_DATA = os.path.join('data', 'lcip', 'inspire-data.xlsx')
WARD_DATA = os.path.join('data', 'leeds_wards.csv')
# Function to fuzzy match and merge dataframes
@@ -24,9 +24,20 @@ def fuzzy_merge(df1, df2, key1, key2, threshold=90):
# Process Inspire data
- inspire_data = pd.read_excel(INSPIRE_DATA).drop(columns={'R2','R3','R4'})
+ inspire_data = pd.read_excel(INSPIRE_DATA).drop(columns={'R2 Q2','R3 Q3','R4 Q4'})
ward_data = pd.read_csv(WARD_DATA)
+ # inspire_data = inspire_data.pivot(index='METRIC', columns='THEME', values='R1 Q1')
+
+ inspire_data_na = inspire_data.dropna().loc[inspire_data['R1 Q1'] != 0]
+ themes = inspire_data_na['THEME'].unique()
+
+ for theme in themes:
+ theme_df = inspire_data_na[inspire_data_na['THEME'] == theme]
+ theme_df = theme_df.pivot_table(index='THEME', columns='METRIC', values='R1 Q1')
+ theme_filename = theme.replace(" ", "_").replace("/", "_") + '.csv'
+ theme_df.to_csv(os.path.join(OUT_DIR, theme_filename), index=False)
+
wards_applied = inspire_data.loc[inspire_data['THEME']== 'WARDS - APPLICANT BASED']
wards_received = inspire_data.loc[inspire_data['THEME']== 'WARDS - RECEIVING ACTIVITY']
@@ -38,8 +49,8 @@ def fuzzy_merge(df1, df2, key1, key2, threshold=90):
'WD21CD': 'ward_code',
'THEME': 'metric',
'METRIC': 'ward_name',
- 'R1': 'value'
- })).to_csv(os.path.join(OUT_DIR, 'inspire', 'applications_by_ward.csv'))
+ 'R1 Q1': 'value'
+ })).to_csv(os.path.join(OUT_DIR, 'inspire', 'APPLICATIONS_BY_WARD.csv'), index=False)
funded = (
fuzzy_merge(ward_data, wards_received, 'WD21NM', 'METRIC')
@@ -49,5 +60,5 @@ def fuzzy_merge(df1, df2, key1, key2, threshold=90):
'WD21CD': 'ward_code',
'THEME': 'metric',
'METRIC': 'ward_name',
- 'R1': 'value'
- })).to_csv(os.path.join(OUT_DIR, 'inspire', 'funding_received_by_ward.csv'))
+ 'R1 Q1': 'value'
+ })).to_csv(os.path.join(OUT_DIR, 'inspire', 'RECEIVED_BY_WARD.csv'), index=False)
diff --git a/src/_components/dashboard/big_number.njk b/src/_components/dashboard/big_number.njk
index b12e1f3..fd75856 100644
--- a/src/_components/dashboard/big_number.njk
+++ b/src/_components/dashboard/big_number.njk
@@ -1,2 +1,4 @@
-
{%- endif -%}
{{ content | safe }}
diff --git a/src/_components/dashboard/text-panel.njk b/src/_components/dashboard/text-panel.njk
new file mode 100644
index 0000000..32f2ba0
--- /dev/null
+++ b/src/_components/dashboard/text-panel.njk
@@ -0,0 +1,11 @@
+
+{%-if link -%}{%- endif -%}
+ {{ content | safe }}
+{%-if link -%}{%- endif -%}
+
diff --git a/src/_data/viz/lcip/AGE_(APPLIED).csv b/src/_data/viz/lcip/AGE_(APPLIED).csv
new file mode 100644
index 0000000..7fdb7b1
--- /dev/null
+++ b/src/_data/viz/lcip/AGE_(APPLIED).csv
@@ -0,0 +1,2 @@
+18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known
+11.0,16.0,24.0,14.0,9.0,8.0,13.0,1.0,2.0
diff --git a/src/_data/viz/lcip/AGE_(FUNDED).csv b/src/_data/viz/lcip/AGE_(FUNDED).csv
new file mode 100644
index 0000000..e9880a3
--- /dev/null
+++ b/src/_data/viz/lcip/AGE_(FUNDED).csv
@@ -0,0 +1,2 @@
+18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+
+1.0,3.0,17.0,3.0,7.0,4.0,8.0,1.0
diff --git a/src/_data/viz/lcip/APPLICATIONS_RECEIVED.csv b/src/_data/viz/lcip/APPLICATIONS_RECEIVED.csv
new file mode 100644
index 0000000..0c19b3b
--- /dev/null
+++ b/src/_data/viz/lcip/APPLICATIONS_RECEIVED.csv
@@ -0,0 +1,2 @@
+No. of eligible applications ,No. of ineligible ,Total amount of funding requested (£),from an individual artist,from an organisation
+25.0,1.0,31695.0,17.0,8.0
diff --git a/src/_data/viz/lcip/ARTFORM_(APPLIED).csv b/src/_data/viz/lcip/ARTFORM_(APPLIED).csv
new file mode 100644
index 0000000..dec34f2
--- /dev/null
+++ b/src/_data/viz/lcip/ARTFORM_(APPLIED).csv
@@ -0,0 +1,2 @@
+Combined Arts,Crafts,Dance,Digital Media,Festival/Carnival ,Film,Literature / Poetry / Spoken Word,Music,Photography,Theatre,Visual Art
+4.0,1.0,1.0,2.0,1.0,2.0,1.0,7.0,2.0,1.0,5.0
diff --git a/src/_data/viz/lcip/ARTFORM_(FUNDED).csv b/src/_data/viz/lcip/ARTFORM_(FUNDED).csv
new file mode 100644
index 0000000..a8c4dcd
--- /dev/null
+++ b/src/_data/viz/lcip/ARTFORM_(FUNDED).csv
@@ -0,0 +1,2 @@
+Crafts,Digital Media,Music,Photography,Visual Art
+1.0,2.0,2.0,1.0,3.0
diff --git a/src/_data/viz/lcip/CARER_(APPLIED).csv b/src/_data/viz/lcip/CARER_(APPLIED).csv
new file mode 100644
index 0000000..36da5dd
--- /dev/null
+++ b/src/_data/viz/lcip/CARER_(APPLIED).csv
@@ -0,0 +1,2 @@
+No,Not known,Prefer not to say,Yes
+18.0,61.0,10.0,5.0
diff --git a/src/_data/viz/lcip/CARER_(FUNDED).csv b/src/_data/viz/lcip/CARER_(FUNDED).csv
new file mode 100644
index 0000000..5a6c18a
--- /dev/null
+++ b/src/_data/viz/lcip/CARER_(FUNDED).csv
@@ -0,0 +1,2 @@
+No,Not known,Prefer not to say,Yes
+5.0,12.0,10.0,4.0
diff --git a/src/_data/viz/lcip/CONTRIBUTION_TO_WORKFORCE.csv b/src/_data/viz/lcip/CONTRIBUTION_TO_WORKFORCE.csv
new file mode 100644
index 0000000..447b3ed
--- /dev/null
+++ b/src/_data/viz/lcip/CONTRIBUTION_TO_WORKFORCE.csv
@@ -0,0 +1,2 @@
+Artists/Creatives,Volunteers
+390.0,48.0
diff --git a/src/_data/viz/lcip/DISABILITY_(APPLIED).csv b/src/_data/viz/lcip/DISABILITY_(APPLIED).csv
new file mode 100644
index 0000000..b7102ae
--- /dev/null
+++ b/src/_data/viz/lcip/DISABILITY_(APPLIED).csv
@@ -0,0 +1,2 @@
+Hearing impairment ,Learning disability,Long-standing illness or health condition,Mental health condition ,Neuro Diverse,Not known,Physical impairment ,Prefer not to say
+1.0,7.0,4.0,5.0,8.0,39.0,6.0,10.0
diff --git a/src/_data/viz/lcip/DISABILITY_(FUNDED).csv b/src/_data/viz/lcip/DISABILITY_(FUNDED).csv
new file mode 100644
index 0000000..8f747d9
--- /dev/null
+++ b/src/_data/viz/lcip/DISABILITY_(FUNDED).csv
@@ -0,0 +1,2 @@
+Hearing impairment ,Learning disability,Long-standing illness or health condition,Mental health condition ,Neuro Diverse,Not known,Physical impairment ,Prefer not to say
+1.0,2.0,2.0,2.0,3.0,4.0,6.0,10.0
diff --git a/src/_data/viz/lcip/ETHNIC_ORIGIN_(APPLIED).csv b/src/_data/viz/lcip/ETHNIC_ORIGIN_(APPLIED).csv
new file mode 100644
index 0000000..89d9c7e
--- /dev/null
+++ b/src/_data/viz/lcip/ETHNIC_ORIGIN_(APPLIED).csv
@@ -0,0 +1,2 @@
+African,Any other white background,Caribbean,Chinese,Indian,Prefer not to say,White British,White English,White Scottish,White Welsh,White and Asian ,White and Black African,White and Black Caribbean
+1.0,8.0,2.0,1.0,1.0,8.0,7.0,64.0,3.0,3.0,1.0,1.0,1.0
diff --git a/src/_data/viz/lcip/ETHNIC_ORIGIN_(FUNDED).csv b/src/_data/viz/lcip/ETHNIC_ORIGIN_(FUNDED).csv
new file mode 100644
index 0000000..54e61e2
--- /dev/null
+++ b/src/_data/viz/lcip/ETHNIC_ORIGIN_(FUNDED).csv
@@ -0,0 +1,2 @@
+Any other white background,Caribbean,White British,White English,White Welsh,White and Asian
+3.0,2.0,1.0,31.0,1.0,1.0
diff --git a/src/_data/viz/lcip/FUNDING.csv b/src/_data/viz/lcip/FUNDING.csv
new file mode 100644
index 0000000..905fccf
--- /dev/null
+++ b/src/_data/viz/lcip/FUNDING.csv
@@ -0,0 +1,2 @@
+Funding invested from Leeds City Council
+11401.0
diff --git a/src/_data/viz/lcip/FUNDING_ADVICE_SESSIONS.csv b/src/_data/viz/lcip/FUNDING_ADVICE_SESSIONS.csv
new file mode 100644
index 0000000..b3ecc9e
--- /dev/null
+++ b/src/_data/viz/lcip/FUNDING_ADVICE_SESSIONS.csv
@@ -0,0 +1,2 @@
+No. of funding surgeries booked,No. of funding surgeries offered ,No. of in person sessions,No. of online/Telephone sessions
+20.0,26.0,6.0,14.0
diff --git a/src/_data/viz/lcip/LEEDS_CULTURE_PROGRAMMES_WEBSITE.csv b/src/_data/viz/lcip/LEEDS_CULTURE_PROGRAMMES_WEBSITE.csv
new file mode 100644
index 0000000..a6f75f4
--- /dev/null
+++ b/src/_data/viz/lcip/LEEDS_CULTURE_PROGRAMMES_WEBSITE.csv
@@ -0,0 +1,2 @@
+No. applications started,No. of applications completed
+35.0,26.0
diff --git a/src/_data/viz/lcip/PROJECT_OUTPUTS_-_APPLIED.csv b/src/_data/viz/lcip/PROJECT_OUTPUTS_-_APPLIED.csv
new file mode 100644
index 0000000..078f3a5
--- /dev/null
+++ b/src/_data/viz/lcip/PROJECT_OUTPUTS_-_APPLIED.csv
@@ -0,0 +1,2 @@
+Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities
+380.5,112.0,153.0,746.0,192.0,136.0
diff --git a/src/_data/viz/lcip/PROJECT_OUTPUTS_-_FUNDED.csv b/src/_data/viz/lcip/PROJECT_OUTPUTS_-_FUNDED.csv
new file mode 100644
index 0000000..6e02c07
--- /dev/null
+++ b/src/_data/viz/lcip/PROJECT_OUTPUTS_-_FUNDED.csv
@@ -0,0 +1,2 @@
+Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities
+81.0,52.0,87.0,311.0,39.0,55.0
diff --git a/src/_data/viz/lcip/REACH.csv b/src/_data/viz/lcip/REACH.csv
new file mode 100644
index 0000000..9b3bc2b
--- /dev/null
+++ b/src/_data/viz/lcip/REACH.csv
@@ -0,0 +1,2 @@
+Audience - in person,Broadcast/online audiences,Participants - in person
+21710.0,75720.0,1147.0
diff --git a/src/_data/viz/lcip/RELIGIOUS_BELIEF_(APPLIED).csv b/src/_data/viz/lcip/RELIGIOUS_BELIEF_(APPLIED).csv
new file mode 100644
index 0000000..df6c69b
--- /dev/null
+++ b/src/_data/viz/lcip/RELIGIOUS_BELIEF_(APPLIED).csv
@@ -0,0 +1,2 @@
+Christian,Jewish,No religion/belief,Not known,Prefer not to say
+15.0,1.0,21.0,54.0,16.0
diff --git a/src/_data/viz/lcip/RELIGIOUS_BELIEF_(FUNDED).csv b/src/_data/viz/lcip/RELIGIOUS_BELIEF_(FUNDED).csv
new file mode 100644
index 0000000..5e6e926
--- /dev/null
+++ b/src/_data/viz/lcip/RELIGIOUS_BELIEF_(FUNDED).csv
@@ -0,0 +1,2 @@
+Christian,No religion/belief,Not known,Prefer not to say
+13.0,13.0,16.0,12.0
diff --git a/src/_data/viz/lcip/RESULTS_.csv b/src/_data/viz/lcip/RESULTS_.csv
new file mode 100644
index 0000000..6de03d3
--- /dev/null
+++ b/src/_data/viz/lcip/RESULTS_.csv
@@ -0,0 +1,2 @@
+No. of withdrawn by applicant ,No. of funded individual artists,No. of funded organisations,No. of unsucessful artist applications ,No. of unsucessful organisation applications ,Total amount awarded to individual artists (£),Total amount awarded to organisations(£),Total amount not awarded to individual artists (£),Total amount not awarded to organisations(£)
+1.0,5.0,4.0,12.0,3.0,6473.0,3428.0,14897.0,3497.0
diff --git a/src/_data/viz/lcip/SEXUAL_ORIENTATION_(APPLIED).csv b/src/_data/viz/lcip/SEXUAL_ORIENTATION_(APPLIED).csv
new file mode 100644
index 0000000..9506438
--- /dev/null
+++ b/src/_data/viz/lcip/SEXUAL_ORIENTATION_(APPLIED).csv
@@ -0,0 +1,2 @@
+Bi-sexual,Gay ,Heterosexual or Straight ,Lesbian,Not known,Other,Prefer not to say
+7.0,3.0,38.0,2.0,54.0,1.0,3.0
diff --git a/src/_data/viz/lcip/SEXUAL_ORIENTATION_(FUNDED).csv b/src/_data/viz/lcip/SEXUAL_ORIENTATION_(FUNDED).csv
new file mode 100644
index 0000000..0c8e7b1
--- /dev/null
+++ b/src/_data/viz/lcip/SEXUAL_ORIENTATION_(FUNDED).csv
@@ -0,0 +1,2 @@
+Bi-sexual,Gay ,Heterosexual or Straight ,Lesbian,Not known,Other
+1.0,1.0,32.0,2.0,7.0,1.0
diff --git a/src/_data/viz/lcip/SEX_(APPLIED).csv b/src/_data/viz/lcip/SEX_(APPLIED).csv
new file mode 100644
index 0000000..f8c14e4
--- /dev/null
+++ b/src/_data/viz/lcip/SEX_(APPLIED).csv
@@ -0,0 +1,2 @@
+Female,Male,Non Binary,Not known
+52.0,44.0,4.0,8.0
diff --git a/src/_data/viz/lcip/SEX_(FUNDED).csv b/src/_data/viz/lcip/SEX_(FUNDED).csv
new file mode 100644
index 0000000..ebd22d4
--- /dev/null
+++ b/src/_data/viz/lcip/SEX_(FUNDED).csv
@@ -0,0 +1,2 @@
+Female,Male,Non Binary
+26.0,17.0,1.0
diff --git a/src/_data/viz/lcip/TARGET_GROUPS_-_APPLIED.csv b/src/_data/viz/lcip/TARGET_GROUPS_-_APPLIED.csv
new file mode 100644
index 0000000..60f138a
--- /dev/null
+++ b/src/_data/viz/lcip/TARGET_GROUPS_-_APPLIED.csv
@@ -0,0 +1,2 @@
+Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Non-binary people,Not targeted at a specific group,Older people (over 55),"People with challenging lives (e.g., those who are socially excluded, those from a low-income household, young people at risk, in care or NEET, carers)",Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25)
+2.0,3.0,2.0,2.0,1.0,3.0,13.0,4.0,2.0,1.0,1.0,6.0,2.0
diff --git a/src/_data/viz/lcip/TARGET_GROUPS_-_FUNDED.csv b/src/_data/viz/lcip/TARGET_GROUPS_-_FUNDED.csv
new file mode 100644
index 0000000..1465c92
--- /dev/null
+++ b/src/_data/viz/lcip/TARGET_GROUPS_-_FUNDED.csv
@@ -0,0 +1,2 @@
+Carers,Disabled people,Ethnically diverse people,LGBT+,Non-binary people,Not targeted at a specific group,Older people (over 55),"People with challenging lives (e.g., those who are socially excluded, those from a low-income household, young people at risk, in care or NEET, carers)",Pupils in schools,Religious or Belief Communities,Women
+2.0,3.0,2.0,1.0,1.0,2.0,3.0,2.0,1.0,1.0,3.0
diff --git a/src/_data/viz/lcip/WARDS_-_APPLICANT_BASED.csv b/src/_data/viz/lcip/WARDS_-_APPLICANT_BASED.csv
new file mode 100644
index 0000000..d4dd8ad
--- /dev/null
+++ b/src/_data/viz/lcip/WARDS_-_APPLICANT_BASED.csv
@@ -0,0 +1,2 @@
+Beeston & Holbeck ,Calverley & Farsley ,Chapel Allerton ,Farnley & Wortley ,Kirkstall ,Otley & Yeadon ,Pudsey ,Weetwood ,Wetherby
+1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0
diff --git a/src/_data/viz/lcip/WARDS_-_RECEIVING_ACTIVITY.csv b/src/_data/viz/lcip/WARDS_-_RECEIVING_ACTIVITY.csv
new file mode 100644
index 0000000..6cec3da
--- /dev/null
+++ b/src/_data/viz/lcip/WARDS_-_RECEIVING_ACTIVITY.csv
@@ -0,0 +1,2 @@
+Beeston & Holbeck ,Calverley & Farsley ,Farnley & Wortley ,Gipton & Harehills ,Guiseley & Rawdon ,Headingley & Hyde Park ,Horsforth ,Kirkstall ,Little London & Woodhouse ,Otley & Yeadon ,Pudsey ,Roundhay ,Weetwood ,Wetherby
+1.0,2.0,1.0,1.0,1.0,2.0,1.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0
diff --git a/src/_data/viz/lcip/inspire/RECEIVED_BY_WARD.csv b/src/_data/viz/lcip/inspire/RECEIVED_BY_WARD.csv
new file mode 100644
index 0000000..c2f4909
--- /dev/null
+++ b/src/_data/viz/lcip/inspire/RECEIVED_BY_WARD.csv
@@ -0,0 +1,15 @@
+ward_code,metric,ward_name,value
+E05011395,WARDS - RECEIVING ACTIVITY,Guiseley & Rawdon ,1.0
+E05011549,WARDS - RECEIVING ACTIVITY,Otley & Yeadon ,1.0
+E05011414,WARDS - RECEIVING ACTIVITY,Wetherby ,1.0
+E05011547,WARDS - RECEIVING ACTIVITY,Horsforth ,1.0
+E05011413,WARDS - RECEIVING ACTIVITY,Weetwood ,1.0
+E05011411,WARDS - RECEIVING ACTIVITY,Roundhay ,1.0
+E05011389,WARDS - RECEIVING ACTIVITY,Calverley & Farsley ,2.0
+E05011402,WARDS - RECEIVING ACTIVITY,Kirkstall ,2.0
+E05011397,WARDS - RECEIVING ACTIVITY,Headingley & Hyde Park ,2.0
+E05011409,WARDS - RECEIVING ACTIVITY,Pudsey ,1.0
+E05011403,WARDS - RECEIVING ACTIVITY,Little London & Woodhouse ,1.0
+E05011394,WARDS - RECEIVING ACTIVITY,Gipton & Harehills ,1.0
+E05012648,WARDS - RECEIVING ACTIVITY,Farnley & Wortley ,1.0
+E05012647,WARDS - RECEIVING ACTIVITY,Beeston & Holbeck ,1.0
diff --git a/src/_data/viz/lcip/inspire/applications_by_ward.csv b/src/_data/viz/lcip/inspire/applications_by_ward.csv
index d792f62..86d894e 100644
--- a/src/_data/viz/lcip/inspire/applications_by_ward.csv
+++ b/src/_data/viz/lcip/inspire/applications_by_ward.csv
@@ -1,33 +1,10 @@
-,ward_code,metric,ward_name,value
-0,E05011395,WARDS - APPLICANT BASED,Guiseley & Rawdon ,0.0
-1,E05011549,WARDS - APPLICANT BASED,Otley & Yeadon ,1.0
-3,E05012842,WARDS - APPLICANT BASED,Alwoodley ,1.0
-4,E05011396,WARDS - APPLICANT BASED,Harewood ,1.0
-5,E05011414,WARDS - APPLICANT BASED,Wetherby ,0.0
-6,E05011547,WARDS - APPLICANT BASED,Horsforth ,0.0
-7,E05011413,WARDS - APPLICANT BASED,Weetwood ,0.0
-8,E05011405,WARDS - APPLICANT BASED,Moortown ,0.0
-9,E05011411,WARDS - APPLICANT BASED,Roundhay ,0.0
-10,E05011389,WARDS - APPLICANT BASED,Calverley & Farsley ,1.0
-11,E05011387,WARDS - APPLICANT BASED,Bramley & Stanningley ,0.0
-12,E05011402,WARDS - APPLICANT BASED,Kirkstall ,0.0
-13,E05011397,WARDS - APPLICANT BASED,Headingley & Hyde Park ,0.0
-14,E05011390,WARDS - APPLICANT BASED,Chapel Allerton ,2.0
-15,E05011400,WARDS - APPLICANT BASED,Killingbeck & Seacroft ,0.0
-16,E05011409,WARDS - APPLICANT BASED,Pudsey ,0.0
-17,E05011385,WARDS - APPLICANT BASED,Armley ,1.0
-18,E05011403,WARDS - APPLICANT BASED,Little London & Woodhouse ,2.0
-19,E05011394,WARDS - APPLICANT BASED,Gipton & Harehills ,0.0
-20,E05011391,WARDS - APPLICANT BASED,Cross Gates & Whinmoor ,0.0
-21,E05012648,WARDS - APPLICANT BASED,Farnley & Wortley ,0.0
-22,E05012647,WARDS - APPLICANT BASED,Beeston & Holbeck ,2.0
-23,E05011399,WARDS - APPLICANT BASED,Hunslet & Riverside ,0.0
-24,E05011388,WARDS - APPLICANT BASED,Burmantofts & Richmond Hill ,0.0
-25,E05013831,WARDS - APPLICANT BASED,Temple Newsam ,0.0
-26,E05011406,WARDS - APPLICANT BASED,Morley North ,2.0
-27,E05011404,WARDS - APPLICANT BASED,Middleton Park ,0.0
-28,E05011410,WARDS - APPLICANT BASED,Rothwell ,0.0
-29,E05013830,WARDS - APPLICANT BASED,Garforth & Swillington ,0.0
-30,E05011407,WARDS - APPLICANT BASED,Morley South ,0.0
-31,E05011384,WARDS - APPLICANT BASED,Ardsley & Robin Hood ,0.0
-32,E05011401,WARDS - APPLICANT BASED,Kippax & Methley ,0.0
+ward_code,metric,ward_name,value
+E05011549,WARDS - APPLICANT BASED,Otley & Yeadon ,1.0
+E05011414,WARDS - APPLICANT BASED,Wetherby ,1.0
+E05011413,WARDS - APPLICANT BASED,Weetwood ,1.0
+E05011389,WARDS - APPLICANT BASED,Calverley & Farsley ,1.0
+E05011402,WARDS - APPLICANT BASED,Kirkstall ,1.0
+E05011390,WARDS - APPLICANT BASED,Chapel Allerton ,1.0
+E05011409,WARDS - APPLICANT BASED,Pudsey ,1.0
+E05012648,WARDS - APPLICANT BASED,Farnley & Wortley ,1.0
+E05012647,WARDS - APPLICANT BASED,Beeston & Holbeck ,1.0
diff --git a/src/_data/viz/lcip/inspire/funding_received_by_ward.csv b/src/_data/viz/lcip/inspire/funding_received_by_ward.csv
deleted file mode 100644
index 0c9237c..0000000
--- a/src/_data/viz/lcip/inspire/funding_received_by_ward.csv
+++ /dev/null
@@ -1,33 +0,0 @@
-,ward_code,metric,ward_name,value
-0,E05011395,WARDS - RECEIVING ACTIVITY,Guiseley & Rawdon ,2.0
-1,E05011549,WARDS - RECEIVING ACTIVITY,Otley & Yeadon ,1.0
-3,E05012842,WARDS - RECEIVING ACTIVITY,Alwoodley ,5.0
-4,E05011396,WARDS - RECEIVING ACTIVITY,Harewood ,8.0
-5,E05011414,WARDS - RECEIVING ACTIVITY,Wetherby ,2.0
-6,E05011547,WARDS - RECEIVING ACTIVITY,Horsforth ,1.0
-7,E05011413,WARDS - RECEIVING ACTIVITY,Weetwood ,1.0
-8,E05011405,WARDS - RECEIVING ACTIVITY,Moortown ,1.0
-9,E05011411,WARDS - RECEIVING ACTIVITY,Roundhay ,4.0
-10,E05011389,WARDS - RECEIVING ACTIVITY,Calverley & Farsley ,2.0
-11,E05011387,WARDS - RECEIVING ACTIVITY,Bramley & Stanningley ,1.0
-12,E05011402,WARDS - RECEIVING ACTIVITY,Kirkstall ,1.0
-13,E05011397,WARDS - RECEIVING ACTIVITY,Headingley & Hyde Park ,4.0
-14,E05011390,WARDS - RECEIVING ACTIVITY,Chapel Allerton ,6.0
-15,E05011400,WARDS - RECEIVING ACTIVITY,Killingbeck & Seacroft ,1.0
-16,E05011409,WARDS - RECEIVING ACTIVITY,Pudsey ,2.0
-17,E05011385,WARDS - RECEIVING ACTIVITY,Armley ,12.0
-18,E05011403,WARDS - RECEIVING ACTIVITY,Little London & Woodhouse ,2.0
-19,E05011394,WARDS - RECEIVING ACTIVITY,Gipton & Harehills ,5.0
-20,E05011391,WARDS - RECEIVING ACTIVITY,Cross Gates & Whinmoor ,4.0
-21,E05012648,WARDS - RECEIVING ACTIVITY,Farnley & Wortley ,3.0
-22,E05012647,WARDS - RECEIVING ACTIVITY,Beeston & Holbeck ,6.0
-23,E05011399,WARDS - RECEIVING ACTIVITY,Hunslet & Riverside ,2.0
-24,E05011388,WARDS - RECEIVING ACTIVITY,Burmantofts & Richmond Hill ,0.0
-25,E05013831,WARDS - RECEIVING ACTIVITY,Temple Newsam ,2.0
-26,E05011406,WARDS - RECEIVING ACTIVITY,Morley North ,0.0
-27,E05011404,WARDS - RECEIVING ACTIVITY,Middleton Park ,0.0
-28,E05011410,WARDS - RECEIVING ACTIVITY,Rothwell ,6.0
-29,E05013830,WARDS - RECEIVING ACTIVITY,Garforth & Swillington ,1.0
-30,E05011407,WARDS - RECEIVING ACTIVITY,Morley South ,0.0
-31,E05011384,WARDS - RECEIVING ACTIVITY,Ardsley & Robin Hood ,7.0
-32,E05011401,WARDS - RECEIVING ACTIVITY,Kippax & Methley ,5.0
diff --git a/src/_includes/css/oi.css b/src/_includes/css/oi.css
index 126bc0e..0a3c2b4 100644
--- a/src/_includes/css/oi.css
+++ b/src/_includes/css/oi.css
@@ -17,6 +17,7 @@ h1,h2,h3,h4, .title, .subtitle {
h1, .title {
font-size: 1.8em;
margin-top: 0.5em;
+ margin-bottom: 1em;
font-weight: 600;
text-decoration: underline;
color: #0a2f45;
@@ -27,11 +28,20 @@ h1, .title {
text-align:center;
}
-h2 { font-size: 1.7em; margin-top: 1.764706em; font-weight: 500; }
+h2 { font-size: 1.6em;
+ margin-top: 1.5em;
+ font-weight: 500;
+ text-align: center;
+ text-decoration: underline;
+ text-underline-offset: 10px;
+ text-decoration-color: #0a2f45;
+ text-decoration-thickness: 3px;
+}
h3 {
font-size: 1.4em;
margin-top: 1.428571em;
font-weight: 600;
+ text-align: center;
}
h2:first-child, h3:first-child, .title { margin-top: 0; }
h1 + *, h2 + *, h3 + * { margin-top: 2em; }
@@ -72,7 +82,7 @@ a.button:hover, button:hover, button:focus, a.button:focus { background-color: #
.tallpadded { padding-top: 2em; padding-bottom: 2em; }
section { padding: 2em 0; }
-.block { padding:2em; border-style: groove; margin-top: 2em; margin-bottom: 2em; border-width: 1px 1px; border-color: #bbbb}
+.block { padding:2em; border-style: solid; margin-top: 2em; margin-bottom: 2em; border-width: 1px 1px; border-color: #bbbb}
.skip-to-content-link { position: absolute; top: -3rem; right: 0.5rem; z-index: 2000; transition: top 0.2s; padding: 0.5rem 1rem; }
.skip-to-content-link:focus { top: 0.25rem; }
@@ -100,9 +110,9 @@ header nav ul li { display: inline-block; }
header nav ul > li > a { padding: 0.5em 1em; display: inline-block; width: 100%; color: inherit; }
.header-holder { max-width: 1300px; position: relative; margin: auto;}
-.about { padding: 2em; margin-bottom: 1em; border-style: groove; border-width: 1px; border-color: #bbbb;}
+.about { padding: 2em; margin-bottom: 1em; border-style: solid; border-width: 1px; border-color: #bbbb;}
-.summary { padding-top: 2em; padding-bottom: 1em; }
+.summary { padding-top: 2em; }
.read-more { margin-top: 1em; padding-bottom: 0.5em; }
.read-more a {
@@ -112,7 +122,7 @@ header nav ul > li > a { padding: 0.5em 1em; display: inline-block; width: 100%;
text-underline-offset: 3px;
text-decoration-color: #91cfce;
text-decoration-thickness: 2px;
- border-style: groove;
+ border-style: solid;
border-width: 1px 1px 1px;
border-color: #bbbb;
padding: 1em;
@@ -127,15 +137,13 @@ header nav ul > li > a { padding: 0.5em 1em; display: inline-block; width: 100%;
/* Dashboard */
.pane {
padding: 2em;
- justify-content: space-evenly;
-
}
-.grid { display: grid; grid-template-columns: 50% 50%; grid-gap: 0.5em; }
+.grid { display: grid; grid-template-columns: 50% 50%; grid-gap: 0.5em; margin-top: 0.5em; margin-bottom:0;}
.grid .pane {
background: #91cfce;
color: #0a2f45;
- border-right: groove;
+ border-right: solid;
border-width: 1px 1px;
border-color: #7eb4b3;
transition: color 0.15s linear, background-color 0.15s linear;
@@ -146,14 +154,44 @@ header nav ul > li > a { padding: 0.5em 1em; display: inline-block; width: 100%;
}
}
+.grid .pane h2 {
+ text-decoration: none;
+ font-size: 1.4em;
+ margin:0;
+}
+
ul.grid { list-style: none; margin-left: 0em; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));}
ul.grid > li > a { display: block; text-decoration: none;}
ul.grid > li > a > h3 { text-align: center; font-weight: 500; font-size: 1.2em; color: inherit;
color:rgba(92, 176, 177, 0.881) 0%;
color: rgb(0, 50, 71) 100%;
+ line-height: 1.4em;
}
+ul.grid > li > h3 {
+ text-align: center;
+ font-weight: 500;
+ font-size: 1.1em;
+ color: inherit;
+ color:rgba(92, 176, 177, 0.881) 0%;
+ color: rgb(0, 50, 71) 100%;
+ line-height: 1.4em;
+}
+.text-panel {
+ padding: 5em;
+ background: #91cfce;
+ color: #0a2f45;
+ border-right: solid;
+ border-width: 1px 1px;
+ border-color: #7eb4b3;
+ transition: color 0.15s linear, background-color 0.15s linear;
+
+ &:hover {
+ color: white;
+ background: #002331;
+ }
+}
.impact-link:hover {
diff --git a/src/lcip/index.njk b/src/lcip/index.njk
index 7c0a053..8e2a459 100644
--- a/src/lcip/index.njk
+++ b/src/lcip/index.njk
@@ -6,138 +6,203 @@ url: /lcip/
- Leeds Cultural Investment Programme is a framework to enable culture and creativity, support the stability and growth of Leeds’ creative sector and to promote access to cultural and creative opportunities by Leeds residents.
+ Leeds Cultural Investment Programme is a framework to enable culture and creativity, support the stability and growth of Leeds’ creative sector and to promote access to cultural and creative opportunities by Leeds residents. Grants are awarded through the programme to creative individuals and organisations, building on the arts@leeds and Leeds Insired funding schemes.
+
+
+
+ There are five funding streams designed to enable creative and cultural activity in Leeds to flourish for the benefit of all who live, work, study and visit the city. The scheme offers both Project (one-off) funding and Revenue (ongoing) funding, divided into the funding streams: Inspire, Grow: Project, Grow: Revenue, Thrive and Cultural Anchors. Explore data relating to these funding streams below.
+
+
+ To read more about the programme, visit the Leeds Culture Programmes website.
- {% comp "dashboard.panels", { columns: 4 } %}
+Project
- {% comp "dashboard.pane", { link: "/lcip/inspire/" } %}
+
+ The project grants available are: Inspire, Grow: Project and Activate. These grants updated every financial quarter and are cumulative. These figures are indicative of our investment. Click the links below to view data on each funding stream.
- Inspire
- {% comp "dashboard.big_number", { number: 58 } %}
- {% endcomp %}
-
+ {% comp "dashboard.panels", { columns: 1 } %}
+ {% comp "dashboard.pane", { bg: '#004563', color: '#ffffff'} %}
+ Overview: Q1 (1 Apr 2024 - 30 June 2024)
{% endcomp %}
+ {% endcomp %}
- {% comp "dashboard.pane", { link: "/lcip/inspire/" } %}
-
- Inspire
- {% comp "dashboard.big_number", { number: 17 } %}
+ {% comp "dashboard.panels", { columns: 4 } %}
+
+ {% comp "dashboard.pane" %}
+ Number of advice sessions
+ {% comp "dashboard.big_number", { number: 58 } %}
{% endcomp %}
-
+ {% endcomp %}
+ {% comp "dashboard.pane" %}
+ Number of applications
+ {% comp "dashboard.big_number", { number: 17 } %}
+ {% endcomp %}
{% endcomp %}
- {% comp "dashboard.pane", { link: "/lcip/inspire/", columns: 2, rows: 2 } %}
-
- Ward-level data
- {% comp "dashboard.embedded_figure", { link: "/lcip/inspire/" } %}
-
- {{ comp.oi.map.hex_cartogram({
- config: {
- hexjson: hex.wards_leeds,
- data: viz.leeds_2023.volunteers_by_ward,
- scale: 'rgba(92, 176, 177, 0.881) 0%, rgb(1, 68, 96) 100%',
- matchKey: 'ward_code',
- value: 'confirmed',
- label: '{{ n | slice(0,3) }}',
- tooltip: '{{ n }}: {{ confirmed }}'
- }
- }) | safe }}
-
+ {% comp "dashboard.pane" %}
+ Funded artforms
+ {% comp "dashboard.big_number", { number: 17 } %}
+ {% endcomp %}
+ {% endcomp %}
+ {% comp "dashboard.pane" %}
+ Funding awarded
+ {% comp "dashboard.big_number", { number: 17 } %}
+ {% endcomp %}
+ {% endcomp %}
+ {% comp "dashboard.pane" %}
+ Workforce
+ {% comp "dashboard.big_number", { number: 58 } %}
+ {% endcomp %}
{% endcomp %}
+
+
+ {% comp "dashboard.pane" %}
+ Engagement
+ {% comp "dashboard.big_number", { number: 17 } %}
+ {% endcomp %}
{% endcomp %}
- {% comp "dashboard.pane", { link: "/lcip/inspire/" } %}
- Inspire
-
- {% comp "dashboard.big_number", { number: 13 } %}
+ {% comp "dashboard.pane" %}
+ Wards receiving activity
+ {% comp "dashboard.big_number", { number: 17 } %}
{% endcomp %}
-
+ {% endcomp %}
+
+ {% comp "dashboard.pane" %}
+ Diversity
+ {% comp "dashboard.big_number", { number: 17 } %}
{% endcomp %}
+ {% endcomp %}
+{% endcomp %}
- {% comp "dashboard.pane", { link: "/lcip/inspire/" } %}
- Inspire
-
- {% comp "dashboard.big_number", { prefix: '£', number: '11k' } %}
- {% endcomp %}
-
+{% comp "dashboard.panels", { columns: 1 } %}
+ {% comp "dashboard.pane", { bg: '#004563', color: '#ffffff'} %}
+ Project funding schemes
{% endcomp %}
+{% endcomp %}
- {% comp "dashboard.pane", { link: "/lcip/grow-project/" } %}
- Grow: Project
+{% comp "dashboard.panels", { columns: 3 } %}
- {% comp "dashboard.big_number", { number:'£8k' } %}
- {% endcomp %}
-
- {% endcomp %}
- {% comp "dashboard.pane", { link: "/lcip/grow-project/" } %}
- Grow: Project
+ {% comp "dashboard.text-panel", { link: "/lcip/inspire/", height: '200px' } %}
+ Inspire
+ {% endcomp %}
- {% comp "dashboard.big_number", { number: '£3k' } %}
- {% endcomp %}
-
+ {% comp "dashboard.text-panel", { link: "/lcip/grow-project/", height: '200px' } %}
+ Grow: Project
{% endcomp %}
- {% comp "dashboard.pane", { link: "/lcip/activate/" } %}
+ {% comp "dashboard.text-panel", { link: "/lcip/activate/", height: '200px' } %}
Activate
+ {% endcomp %}
+{% endcomp %}
- {% comp "dashboard.big_number", { number: 250 } %}
- {% endcomp %}
-
+
+Revenue
+
+
+ The Revenue grants available are: Grow: Revenue, Thrive and Cultural Anchors. These grants are offered over a two-year period. The figures will be updated at the beginning of the financial year. The figures are indicative of our investment.
+
+
+ {% comp "dashboard.panels", { columns: 1 } %}
+ {% comp "dashboard.pane", { bg: '#004563', color: '#ffffff'} %}
+
+ Revenue grants: Year 1 - 2024
+
+ {% endcomp %}
{% endcomp %}
- {% comp "dashboard.pane", { link: "/lcip/activate/" } %}
- Activate
- {% comp "dashboard.big_number", { number: 100 } %}
- {% endcomp %}
-
+ {% comp "dashboard.panels", { columns: 4 } %}
+ {% comp "dashboard.pane" %}
+ Number of advice sessions
+ {% comp "dashboard.big_number", { number: 58 } %}
{% endcomp %}
+ {% endcomp %}
- {% comp "dashboard.pane", { link: "/lcip/grow-revenue/" } %}
- Grow: Revenue
- {% comp "dashboard.big_number", { number: 100 } %}
+ {% comp "dashboard.pane" %}
+ Number of applications
+ {% comp "dashboard.big_number", { number: 17 } %}
{% endcomp %}
-
+ {% endcomp %}
+ {% comp "dashboard.pane" %}
+ Funded artforms
+ {% comp "dashboard.big_number", { number: 17 } %}
{% endcomp %}
+ {% endcomp %}
- {% comp "dashboard.pane", { link: "/lcip/thrive/" } %}
- Thrive
- {% comp "dashboard.big_number", { number: 3000 } %}
- {% endcomp %}
-
+ {% comp "dashboard.pane" %}
+ Funding requested
+ {% comp "dashboard.big_number", { number: 17 } %}
{% endcomp %}
-
- {% comp "dashboard.pane", { link: "/lcip/thrive/" } %}
- Thrive
- {% comp "dashboard.big_number", { number: 100 } %}
+ {% endcomp %}
+
+ {% comp "dashboard.pane" %}
+ Workforce
+ {% comp "dashboard.big_number", { number: 58 } %}
{% endcomp %}
-
+ {% endcomp %}
+
+
+ {% comp "dashboard.pane" %}
+ Engagement
+ {% comp "dashboard.big_number", { number: 17 } %}
{% endcomp %}
+ {% endcomp %}
- {% comp "dashboard.pane", { link: "/lcip/cultural-anchors/" } %}
- Cultural Anchors
- {% comp "dashboard.big_number", { number: 700 } %}
+ {% comp "dashboard.pane" %}
+ Wards receiving activity
+ {% comp "dashboard.big_number", { number: 17 } %}
{% endcomp %}
-
+ {% endcomp %}
+
+ {% comp "dashboard.pane" %}
+ Diversity
+ {% comp "dashboard.big_number", { number: 17 } %}
{% endcomp %}
+ {% endcomp %}
+
+{% endcomp %}
+{% comp "dashboard.panels", { columns: 1 } %}
+ {% comp "dashboard.pane", { bg: '#004563', color: '#ffffff'} %}
+
+ Revenue grant schemes
+
+ {% endcomp %}
+{% endcomp %}
+
+{% comp "dashboard.panels", { columns: 3 } %}
+
+
+ {% comp "dashboard.text-panel", { link: "/lcip/grow-revenue/" } %}
+ Grow: Revenue
+ {% endcomp %}
+
+
+ {% comp "dashboard.text-panel", { link: "/lcip/thrive/" } %}
+ Thrive
+ {% endcomp %}
+
+ {% comp "dashboard.text-panel", { link: "/lcip/cultural-anchors/" } %}
+ Cultural Anchors
+ {% endcomp %}
{% endcomp %}
\ No newline at end of file
diff --git a/src/lcip/inspire/applications/index.njk b/src/lcip/inspire/applications/index.njk
new file mode 100644
index 0000000..2f14581
--- /dev/null
+++ b/src/lcip/inspire/applications/index.njk
@@ -0,0 +1,84 @@
+---
+title: Applications
+---
+
+{% comp "dashboard.panels", { columns: 4 } %}
+
+ {% comp "dashboard.pane" %}
+ Eligible applications
+ {% comp "dashboard.big_number", { number: 25 } %}{% endcomp %}
+ {% endcomp %}
+
+ {% comp "dashboard.pane" %}
+ Ineligible applications
+ {% comp "dashboard.big_number", { number: 1 } %}{% endcomp %}
+ {% endcomp %}
+
+ {% comp "dashboard.pane" %}
+ Individual artists
+ {% comp "dashboard.big_number", { number: 17 } %}{% endcomp %}
+ {% endcomp %}
+
+ {% comp "dashboard.pane" %}
+ Organisations
+ {% comp "dashboard.big_number", { number: 8 } %}{% endcomp %}
+ {% endcomp %}
+
+ {% comp "dashboard.pane", { columns: 2, rows: 2 } %}
+ Applications received by ward
+ {% comp "dashboard.embedded_figure" %}
+ This map represents the number of applications received from each Leeds ward.
+
+ {{ comp.oi.map.hex_cartogram({
+ config: {
+ hexjson: hex.wards_leeds,
+ data: viz.lcip.inspire.APPLICATIONS_BY_WARD,
+ scale: 'rgb(30, 172, 175) 0%, rgb(0, 69, 99) 100%',
+ matchKey: 'ward_code',
+ min: 0,
+ max: 2,
+ height: 600,
+ width: 600,
+ value: 'value',
+ label: '{{ n | slice(0,3) }}',
+ tooltip: '{{ n }}: {{ value }}'
+ }
+ }) | safe }}
+ {% endcomp %}
+ {% endcomp %}
+
+{% comp "dashboard.pane", { columns: 2, rows: 2 } %}
+
+ Funding awarded by ward
+ {% comp "dashboard.embedded_figure" %}
+ This map represents the number of funding applications awarded in each Leeds ward.
+
+ {{ comp.oi.map.hex_cartogram({
+ config: {
+ hexjson: hex.wards_leeds,
+ data: viz.lcip.inspire.RECEIVED_BY_WARD,
+ scale: 'rgb(30, 172, 175) 0%, rgb(0, 69, 99) 100%',
+ matchKey: 'ward_code',
+ value: 'value',
+ height: 600,
+ width: 600,
+ min: 0,
+ max: 2,
+ label: '{{ n | slice(0,3) }}',
+ tooltip: '{{ n }}: {{ value }}'
+ }
+ }) | safe }}
+
+ {% endcomp %}
+ {% endcomp %}
+
+{% endcomp %}
+
+{% comp "dashboard.panels", { columns: 1 } %}
+
+ {% comp "dashboard.pane" %}
+ Funding requested
+ {% comp "dashboard.big_number", { fontsize: '2.6em', number: 31695, prefix: "£"} %}{% endcomp %}
+ {% endcomp %}
+
+{% endcomp %}
diff --git a/src/lcip/inspire/funding-surgeries/index.njk b/src/lcip/inspire/funding-surgeries/index.njk
new file mode 100644
index 0000000..1c37a6e
--- /dev/null
+++ b/src/lcip/inspire/funding-surgeries/index.njk
@@ -0,0 +1,27 @@
+---
+title: Inspire - Funding Surgeries
+---
+
+{% comp "dashboard.panels", { columns: 4 } %}
+
+ {% comp "dashboard.pane" %}
+ No. of funding surgeries booked
+ {% comp "dashboard.big_number", { number: 20 } %}{% endcomp %}
+ {% endcomp %}
+
+ {% comp "dashboard.pane" %}
+ No. of funding surgeries offered
+ {% comp "dashboard.big_number", { number: 26 } %}{% endcomp %}
+ {% endcomp %}
+
+ {% comp "dashboard.pane" %}
+ No. of in person sessions
+ {% comp "dashboard.big_number", { number: 6 } %}{% endcomp %}
+ {% endcomp %}
+
+ {% comp "dashboard.pane" %}
+ No. of online/Telephone sessions
+ {% comp "dashboard.big_number", { number: 14 } %}{% endcomp %}
+ {% endcomp %}
+
+{% endcomp %}
\ No newline at end of file
diff --git a/src/lcip/inspire/index.njk b/src/lcip/inspire/index.njk
index da759df..9882023 100644
--- a/src/lcip/inspire/index.njk
+++ b/src/lcip/inspire/index.njk
@@ -4,70 +4,16 @@ title: Inspire
- Inspire provides small grants for one off cultural projects and activities offering grants between £500 to £1,500 for individuals or organisations.
+ Inspire provides small grants for one off cultural projects and activities offering grants between £500 to £1,500 for individuals or organisations. The dashboard below provides an overview of the grants awarded through the scheme. Click the panels to see further detail.
{% comp "dashboard.panels", { columns: 4 } %}
- {% comp "dashboard.pane", { link: "/lcip/inspire/" } %}
-
- Funding
- Data about grants awarded through the programme
- {% comp "dashboard.big_number", { number: '£11k' } %}
- {% endcomp %}
-
-
- {% endcomp %}
-
- {% comp "dashboard.pane", { link: "/lcip/inspire/" } %}
-
- Workforce
- The artists and volunteers employed
- {% comp "dashboard.big_number", { number: '350' } %}
- {% endcomp %}
-
-
- {% endcomp %}
-
- {% comp "dashboard.pane", { link: "/lcip/inspire/" } %}
-
- Artforms
- Data on funding applications and awards by artform
- {% comp "dashboard.big_number", { number: '13' } %}
- {% endcomp %}
-
-
- {% endcomp %}
-
- {% comp "dashboard.pane", { link: "/lcip/inspire/" } %}
-
- Diversity
- Applicant and workforce demographics
- {% comp "dashboard.big_number", { number: 'X' } %}
- {% endcomp %}
-
-
- {% endcomp %}
-
-
- {% endcomp %}
-
-
-
-
-
-
-
-
-{#
-
- {% comp "dashboard.panels", { columns: 4 } %}
-
- {% comp "dashboard.pane", { link: "/lcip/inspire/" } %}
+ {% comp "dashboard.pane", { link: "/lcip/inspire/funding-surgeries" } %}
Funding surgeries offered
- {% comp "dashboard.big_number", { number: 58 } %}
+ {% comp "dashboard.big_number", { number: 26 } %}
{% endcomp %}
@@ -75,29 +21,31 @@ title: Inspire
{% endcomp %}
- {% comp "dashboard.pane", { link: "/lcip/grow-project/" } %}
+ {% comp "dashboard.pane", { link: "/lcip/inspire/applications/" } %}
Applications received
- {% comp "dashboard.big_number", { number: 17 } %}
+ {% comp "dashboard.big_number", { number: 25 } %}
{% endcomp %}
{% endcomp %}
- {% comp "dashboard.pane", { link: "/lcip/grow-revenue/", columns: 2, rows: 2 } %}
+ {% comp "dashboard.pane", { link: "/lcip/inspire/applications/", columns: 2, rows: 2 } %}
Applications received by ward
- {% comp "dashboard.embedded_figure", { link: "/lcip/thrive/" } %}
+ {% comp "dashboard.embedded_figure" %}
This map represents the number of applications received from each Leeds ward.
{{ comp.oi.map.hex_cartogram({
config: {
hexjson: hex.wards_leeds,
- data: viz.lcip.inspire.applications_by_ward,
+ data: viz.lcip.inspire.APPLICATIONS_BY_WARD,
scale: 'rgb(30, 172, 175) 0%, rgb(0, 69, 99) 100%',
matchKey: 'ward_code',
value: 'value',
+ min: 0,
+ max: 2,
label: '{{ n | slice(0,3) }}',
tooltip: '{{ n }}: {{ value }}'
}
@@ -108,13 +56,12 @@ title: Inspire
{% endcomp %}
{% endcomp %}
- {% comp "dashboard.pane", { link: "/lcip/thrive/" } %}
+ {% comp "dashboard.pane", { link: "/lcip/inspire/results/" } %}
Number of funded artists
- {% comp "dashboard.big_number", { number: 13 } %}
- {% endcomp %}
-
+ {% comp "dashboard.big_number", { number: 5 } %}
{% endcomp %}
+ {% endcomp %}
{% comp "dashboard.pane", { link: "/lcip/cultural-anchors/" } %}
@@ -193,5 +140,3 @@ title: Inspire
{% endcomp %}
{% endcomp %}
-
-#}
diff --git a/src/lcip/inspire/results/index.njk b/src/lcip/inspire/results/index.njk
new file mode 100644
index 0000000..eba5a33
--- /dev/null
+++ b/src/lcip/inspire/results/index.njk
@@ -0,0 +1,68 @@
+---
+title: Results
+---
+
+{% comp "dashboard.panels", { columns: 2 } %}
+
+ {% comp "dashboard.pane" %}
+ Funded individual artists
+ {% comp "dashboard.big_number", { number: 5 } %}{% endcomp %}
+ {% endcomp %}
+
+ {% comp "dashboard.pane" %}
+ Funded organisations
+ {% comp "dashboard.big_number", { number: 4 } %}{% endcomp %}
+ {% endcomp %}
+
+{% endcomp %}
+
+{% comp "dashboard.panels", { columns: 3 } %}
+
+
+ {% comp "dashboard.pane" %}
+ Unsuccessful artist applications
+ {% comp "dashboard.big_number", { number: 12 } %}{% endcomp %}
+ {% endcomp %}
+
+ {% comp "dashboard.pane" %}
+ Unsuccessful organisation applications
+ {% comp "dashboard.big_number", { number: 3 } %}{% endcomp %}
+ {% endcomp %}
+
+ {% comp "dashboard.pane" %}
+ Withdrawn by applicant
+ {% comp "dashboard.big_number", { number: 1 } %}{% endcomp %}
+ {% endcomp %}
+
+{% endcomp %}
+
+{% comp "dashboard.panels", { columns: 2 } %}
+
+ {% comp "dashboard.pane" %}
+ Awarded to individual artists
+ {% comp "dashboard.big_number", { prefix: '£', number: 6473, fontsize: '3em' } %}{% endcomp %}
+ {% endcomp %}
+
+ {% comp "dashboard.pane" %}
+ Awarded to organisations
+ {% comp "dashboard.big_number", { number: 3428, prefix: '£', fontsize: '3em' } %}{% endcomp %}
+ {% endcomp %}
+
+{% endcomp %}
+
+{% comp "dashboard.panels", { columns: 2 } %}
+
+
+ {% comp "dashboard.pane" %}
+ Not awarded to individual artists
+ {% comp "dashboard.big_number", { number: 14897, fontsize: '3em', prefix: '£' } %}{% endcomp %}
+ {% endcomp %}
+
+ {% comp "dashboard.pane" %}
+ Total amount not awarded to organisations(£)
+ {% comp "dashboard.big_number", { number: 3497, fontsize: '3em', prefix: '£' } %}{% endcomp %}
+ {% endcomp %}
+
+{% endcomp %}
+
+