@@ -33,6 +33,7 @@ var readJSONFile = require('../data/read-json-file')
3333var recordAcceptance = require ( '../data/record-acceptance' )
3434var recordSignature = require ( '../data/record-signature' )
3535var relicenseAgreement = require ( '../forms/relicense-agreement' )
36+ var renderJurisdiction = require ( './partials/jurisdiction' )
3637var runParallel = require ( 'run-parallel' )
3738var runSeries = require ( 'run-series' )
3839var runWaterfall = require ( 'run-waterfall' )
@@ -115,8 +116,8 @@ ${head(action)}
115116 < h2 > Licensee</ h2 >
116117 < dl >
117118 < dt > Legal Name</ dt > < dd > ${ escape ( order . licensee ) } </ dd >
118- < dt > Jurisdiction</ dt > < dd > [ ${ escape ( order . jurisdiction ) } ] </ dd >
119- < dt > E-Mail</ dt > < dd > [ ${ escape ( order . email ) } ] </ dd >
119+ < dt > Jurisdiction</ dt > < dd > ${ renderJurisdiction ( order . jurisdiction ) } </ dd >
120+ < dt > E-Mail</ dt > < dd > ${ escape ( order . email ) } </ dd >
120121 </ dl >
121122</ section >
122123< section >
@@ -142,7 +143,7 @@ ${head(action)}
142143 </ p >
143144 < p >
144145 ${ escape ( project . licensor . name ) }
145- [ ${ escape ( project . licensor . jurisdiction ) } ]
146+ ( ${ renderJurisdiction ( project . licensor . jurisdiction ) } )
146147 </ p >
147148 < p >
148149 Terms:
@@ -177,8 +178,8 @@ ${head(action)}
177178 < h2 > Sponsor</ h2 >
178179 < dl >
179180 < dt > Legal Name</ dt > < dd > ${ escape ( order . sponsor ) } </ dd >
180- < dt > Jurisdiction</ dt > < dd > [ ${ escape ( order . jurisdiction ) } ] </ dd >
181- < dt > E-Mail</ dt > < dd > [ ${ escape ( order . email ) } ] </ dd >
181+ < dt > Jurisdiction</ dt > < dd > ${ renderJurisdiction ( order . jurisdiction ) } </ dd >
182+ < dt > E-Mail</ dt > < dd > ${ escape ( order . email ) } </ dd >
182183 </ dl >
183184</ section >
184185< section >
@@ -202,7 +203,7 @@ ${head(action)}
202203 </ p >
203204 < p >
204205 ${ escape ( project . licensor . name ) }
205- [ ${ escape ( project . licensor . jurisdiction ) } ]
206+ ( ${ renderJurisdiction ( project . licensor . jurisdiction ) } )
206207 </ p >
207208 < p >
208209 Terms: < a
0 commit comments