forked from canada-ca/design-system-systeme-conception
-
Notifications
You must be signed in to change notification settings - Fork 0
/
library-test.html
4852 lines (4739 loc) · 272 KB
/
library-test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if gt IE 8]><!--><html class="no-js" lang="en" dir="ltr"><!--<![endif]-->
<head>
<meta charset="utf-8">
<!-- Web Experience Toolkit (WET) / Boîte à outils de l'expérience Web (BOEW) wet-boew.github.io/wet-boew/License-en.html / wet-boew.github.io/wet-boew/Licence-fr.html -->
<title>Template and pattern library for Canada.ca - Canada.ca</title>
<meta content="width=device-width,initial-scale=1" name="viewport">
<!-- Meta data -->
<!-- Meta data-->
<!-- Load closure template scripts -->
<script type="text/javascript" src="https://www.canada.ca/etc/designs/canada/cdts/gcweb/v4_0_30/cdts/compiled/soyutils.js"></script>
<script type="text/javascript" src="https://www.canada.ca/etc/designs/canada/cdts/gcweb/v4_0_30/cdts/compiled/wet-en.js"></script>
<!-- Write closure template -->
<script type="text/javascript">
document.write(wet.builder.refTop({
}));
</script>
</head>
<body vocab="http://schema.org/" typeof="WebPage">
<div id="def-top">
</div>
<!-- Write closure template -->
<script type="text/javascript">
var defTop = document.getElementById("def-top");
defTop.outerHTML = wet.builder.top({
lngLinks: [{
lang: "fr",
href: "#",
text: "Français"
}],
breadcrumbs: [{
title: "Home",
href: "https://www.canada.ca/en.html"
},{
title: "About Canada.ca",
href: 'https://www.canada.ca/en/government/about.html'
},{
title: "Canada.ca design system",
href: 'https://www.canada.ca/en/government/about/design-system.html'
}],
search: true,
siteMenu: true,
showPreContent: true
});
</script>
<main role="main" property="mainContentOfPage" class="container">
<h1 property="name" id="wb-cont" dir="ltr">Template and pattern library for Canada.ca</h1>
<div><div class="mwsgeneric-base-html parbase section">
<p>These patterns and page layouts were user-tested. They were designed help you design digital content focused on the task people are trying to accomplish.</p>
<h2>Find the right template or pattern</h2>
<ul class="list-unstyled">
<li>
<details>
<summary>Answer a few questions to find the right template</summary>
<div class="wb-frmvld">
<form method="get">
<!-- Wizard Q1 -->
<div id="question-1" class="wb-fieldflow" data-wb-fieldflow="{
"renderas":"radio",
"noForm": true,
"base": { "live": true },
"default": { "action": "addClass", "source":"#result1,#result2,#result3,#result4,#result5,#result6,#result7,#result8,#result9,#result10,#result11,#result12,#result13,#result14,#result15,#result16,#result17,#result18,#result19,#result20,#result21,#result22,#result23,#result24,#result25,#result26,#result27,#result28,#result29,#result30,#result31,#result32,#result33,#result34,#result35", "class": "hidden" }
}">
<p>What type of content?</p>
<ul>
<li data-wb-fieldflow="{"action": "append", "source": "#question-2"}">Information about programs and services</li>
<li data-wb-fieldflow="{"action": "append", "source": "#question-5"}">Corporate content: information related to the organization or the minister</li>
<li data-wb-fieldflow="{"action": "append", "source": "#question-7"}">Navigation: ways to help users navigate to other pages</li>
<li data-wb-fieldflow="{"action": "append", "source": "#question-8"}">Promotional and campaign content</li>
<li data-wb-fieldflow="{"action": "append", "source": "#question-9"}">Consultation with Canadians</li>
</ul>
</div>
<!-- Question 2 -->
<div id="question-2" class="hidden wb-fieldflow-sub" data-wb-fieldflow="{"renderas":"radio"}">
<p>What type of information about programs and services?</p>
<ul>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result1"}">Launch a service: applying for a program, a benefit, etc.</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result2"}">Background information about a program</li>
<li data-wb-fieldflow="{"action": "append", "source": "#question-3"}">List of similar elements or index (documents, publications, etc.)</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result23"}">Promote a program or service on another page</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result24"}">Contact information</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result25"}">Visual element (chart, table, image, video, etc.)</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result30"}">Secondary or repetetive information</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result31"}">Privacy statement or disclaimer</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result32"}">Download a non-HTML document</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result33"}">Interactive questions or decision wizard</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result34"}">Social media information</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result35"}">Show a significant change</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result9"}">None of the above</li>
</ul>
</div>
<!-- Question 3 -->
<div id="question-3" class="hidden wb-fieldflow-sub" data-wb-fieldflow="{"renderas":"radio"}">
<p>What type of list of elements?</p>
<ul>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result3"}">Short list (10 to 50 items)</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result4"}">Long list (100+ items)</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result5"}">Long list that needs to be filtered</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result6"}">Long list with faceted filtering</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result8"}">List of guidance on legislation</li>
</ul>
</div>
<!-- Question 4 -->
<div id="question-4" class="hidden wb-fieldflow-sub" data-wb-fieldflow="{"renderas":"radio"}">
<p>Do you want to give information about an Act or a Regulation? </p>
<ul>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result10"}">Act</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result11"}">Regulation</li>
</ul>
</div>
<!-- Question 5 -->
<div id="question-5" class="hidden wb-fieldflow-sub" data-wb-fieldflow="{"renderas":"radio"}">
<p>What type of information about your organization?</p>
<ul>
<li data-wb-fieldflow="{"action": "append", "source": "#question-6"}">Official institutional presence (home page for your organization)</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result16"}">Contact information for your organization</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result17"}">Information about the Minister</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result18"}">Report on performance on service standards</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result34"}">Social media feed</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result9"}">None of the above</li>
</ul>
</div>
<!-- Question 6 -->
<div id="question-6" class="hidden wb-fieldflow-sub" data-wb-fieldflow="{"renderas":"radio"}">
<p>Are you a government organization, institution, or a partnering/collaborative arrangement?</p>
<ul>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result15"}">A partnering/collaborative arrangement</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result12"}">An institution listed under Schedule I, I.1 or II of the Financial Administration Act</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result13"}">An organization associated with a federal institution</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result14"}">I don't know</li>
</ul>
</div>
<!-- Question 7 -->
<div id="question-7" class="hidden wb-fieldflow-sub" data-wb-fieldflow="{"renderas":"radio"}">
<p>What kind of navigation?</p>
<ul>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result19"}">Topic page, part of the global topic tree</li>
<li data-wb-fieldflow="{"action": "append", "source": "#question-3"}">Make a list of several elements or an index (like a list of publications or documents)</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result22"}">Link to other related pages</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result29"}">Navigate to differrent parts of the page</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result33"}">Interactive questions or decision wizard</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result9"}">None of the above</li>
</ul>
</div>
<!-- Question 8 -->
<div id="question-8" class="hidden wb-fieldflow-sub" data-wb-fieldflow="{"renderas":"radio"}">
<p>What do you want to promote?</p>
<ul>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result20"}">An initiative or program, through a promotional campaign</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result21"}">An event</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result23"}">Promote a program or service on an existing page</li>
</ul>
</div>
<!-- Question 9 -->
<div id="question-9" class="hidden wb-fieldflow-sub" data-wb-fieldflow="{"renderas":"radio"}">
<p>What do you want to do about consultations? </p>
<ul>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result26"}">Launch a new consultation</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result27"}">Publish a What we heard report</li>
<li data-wb-fieldflow="{"action": "removeClass", "class": "hidden", "source": "#result28"}">Promote the consultation or the results of a consultation</li>
</ul>
</div>
<!--Result-->
<div id="result1" class="hidden">
<section class="panel panel-primary">
<header class="panel-heading">
<h2 class="panel-title">Launch a service</h2>
</header>
<div class="panel-body">
<p>You can use the <a href="https://design.canada.ca/recommended-templates/service-initiation-pages.html">service initiation template</a> to give all the information people need.</p>
<p>It is a good idea to use the <a href="https://design.canada.ca/common-design-patterns/buttons.html">Buttons</a> pattern to launch the actual application process.</p>
</div>
</section>
</div>
<div id="result2" class="hidden">
<section class="panel panel-primary">
<header class="panel-heading">
<h2 class="panel-title">Information about a program</h2>
</header>
<div class="panel-body">
<p>To provide basic background information about a program, you can use the <a href="https://design.canada.ca/recommended-templates/program-description-pages.html">Program description page</a>.</p>
<p>There are no specific template to publish a report about a program. Use the appropriate patterns from the <a href="/en/government/about/design-system/pattern-library.html">Template and pattern library</a>.</p>
</div>
</section>
</div>
<div id="result3" class="hidden">
<section class="panel panel-primary">
<header class="panel-heading">
<h2 class="panel-title">Short index</h2>
</header>
<div class="panel-body">
<p>You can use the <a href="https://design.canada.ca/recommended-templates/pages-index.html#short">Short index</a>.</p>
</div>
</section>
</div>
<div id="result4" class="hidden">
<section class="panel panel-primary">
<header class="panel-heading">
<h2 class="panel-title">Long index</h2>
</header>
<div class="panel-body">
<p>You can use the <a href="https://design.canada.ca/recommended-templates/pages-index.html#long">Long index</a>.</p>
</div>
</section>
</div>
<div id="result5" class="hidden">
<section class="panel panel-primary">
<header class="panel-heading">
<h2 class="panel-title">Finder page</h2>
</header>
<div class="panel-body">
<p>You can use the <a href="https://design.canada.ca/recommended-templates/pages-index.html#finder">Finder page</a>.</p>
<p>You can use <a href="https://design.canada.ca/common-design-patterns/tables.html">Data table</a> and add filtering.</p>
</div>
</section>
</div>
<div id="result6" class="hidden">
<section class="panel panel-primary">
<header class="panel-heading">
<h2 class="panel-title">Faceted finder page</h2>
</header>
<div class="panel-body">
<p>You can use the <a href="https://design.canada.ca/recommended-templates/pages-index.html#faceted">Faceted finder page</a>.</p>
</div>
</section>
</div>
<div id="result8" class="hidden">
<section class="panel panel-primary">
<header class="panel-heading">
<h2 class="panel-title">Guidance on legislation</h2>
</header>
<div class="panel-body">
<p>You can use the <a href="https://design.canada.ca/recommended-templates/guidance-legislation-pages.html">Guidance on legislation profile pages</a>.</p>
</div>
</section>
</div>
<div id="result9" class="hidden">
<section class="panel panel-primary">
<header class="panel-heading">
<h2 class="panel-title">Generic destination page</h2>
</header>
<div class="panel-body">
<p>There are no specific template for your content. Make sure your page follows the <a href="/en/treasury-board-secretariat/services/government-communications/canada-content-information-architecture-specification/mandatory-elements.html">Mandatory elements of the design system</a>.</p>
<h3>Common design patterns</h3>
<p>Build your pages using patterns from the <a href="/en/government/about/design-system/pattern-library.html">Template and pattern library</a>.</p>
</div>
</section>
</div>
<div id="result10" class="hidden">
<section class="panel panel-primary">
<header class="panel-heading">
<h2 class="panel-title">Act profile page</h2>
</header>
<div class="panel-body">
<p>You can use the <a href="https://design.canada.ca/recommended-templates/laws-regulations-pages.html#act-profile">Act profile page</a>.</p>
</div>
</section>
</div>
<div id="result11" class="hidden">
<section class="panel panel-primary">
<header class="panel-heading">
<h2 class="panel-title">Regulation profile page</h2>
</header>
<div class="panel-body">
<p>You can use the <a href="https://design.canada.ca/recommended-templates/laws-regulations-pages.html#regulation-profile">Regulation profile page</a>.</p>
</div>
</section>
</div>
<div id="result12" class="hidden">
<section class="panel panel-primary">
<header class="panel-heading">
<h2 class="panel-title">Institutional profile</h2>
</header>
<div class="panel-body">
<p>Generally, you should use an <a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional profile</a>.</p>
<p>Search for your organization in this list to confirm.</p>
<table class="wb-tables table table-striped table-hover small" data-wb-tables="{ "ordering" : false , "paging" : false }">
<thead>
<tr class="active">
<th scope="col">Display name</th>
<th scope="col"><span lang="fr">Titre à afficher</span></th>
<th scope="col">Category</th>
<th scope="col">Acronym</th>
<th scope="col"><span lang="fr">Acronyme</span></th>
<th scope="col">Qualifies for</th>
<th scope="col">Parent institution</th>
</tr>
</thead>
<tbody>
<tr>
<td>Agriculture and Agri-Food Canada</td>
<td><span lang="fr">Agriculture et Agroalimentaire Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Agriculture and Agri-Food Canada">AAFC</abbr></td>
<td><span lang="fr"><abbr title="Agriculture et Agroalimentaire Canada">AAC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Canadian Heritage</td>
<td><span lang="fr">Patrimoine canadien</span></td>
<td>Ministerial Department</td>
<td><abbr title="Canadian Heritage">PCH</abbr></td>
<td><span lang="fr"><abbr title="Patrimoine canadien">PCH</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Crown-Indigenous Relations and Northern Affairs Canada</td>
<td><span lang="fr">Relations Couronne-Autochtones et Affaires du Nord Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Crown-Indigenous Relations and Northern Affairs Canada">CIRNAC</abbr></td>
<td><span lang="fr"><abbr title="Relations Couronne-Autochtones et Affaires du Nord Canada">RCAANC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Immigration, Refugees and Citizenship Canada</td>
<td><span lang="fr">Immigration, Réfugiés et Citoyenneté Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Immigration, Refugees and Citizenship Canada">IRCC</abbr></td>
<td><span lang="fr"><abbr title="Immigration, Réfugiés et Citoyenneté Canada">IRCC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Employment and Social Development Canada</td>
<td><span lang="fr">Emploi et Développement social Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Employment and Social Development Canada">ESDC</abbr></td>
<td><span lang="fr"><abbr title="Emploi et Développement social Canada">EDSC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Department of Finance Canada</td>
<td><span lang="fr">Ministère des Finances Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Department of Finance Canada">FIN</abbr></td>
<td><span lang="fr"><abbr title="Ministère des Finances Canada">FIN</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Fisheries and Oceans Canada</td>
<td><span lang="fr">Pêches et Océans Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Fisheries and Oceans Canada">DFO</abbr></td>
<td><span lang="fr"><abbr title="Pêches et Océans Canada">MPO</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Global Affairs Canada</td>
<td><span lang="fr">Affaires mondiales Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Global Affairs Canada">GAC</abbr></td>
<td><span lang="fr"><abbr title="Affaires mondiales Canada">AMC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Health Canada</td>
<td><span lang="fr">Santé Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Health Canada">HC</abbr></td>
<td><span lang="fr"><abbr title="Santé Canada">SC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Indigenous Services Canada</td>
<td><span lang="fr">Services aux Autochtones Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Indigenous Services Canada">ISC</abbr></td>
<td><span lang="fr"><abbr title="Services aux Autochtones Canada">SAC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Innovation, Science and Economic Development Canada</td>
<td><span lang="fr">Innovation, Sciences et Développement économique Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Innovation, Science and Economic Development Canada">ISED</abbr></td>
<td><span lang="fr"><abbr title="Innovation, Sciences et Développement économique Canada">ISDE</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Department of Justice Canada</td>
<td><span lang="fr">Ministère de la Justice Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Department of Justice Canada">JUS</abbr></td>
<td><span lang="fr"><abbr title="Ministère de la Justice Canada">JUS</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>National Defence</td>
<td><span lang="fr">Défense nationale</span></td>
<td>Ministerial Department</td>
<td><abbr title="National Defence">DND</abbr></td>
<td><span lang="fr"><abbr title="Défense nationale">MDN</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Natural Resources Canada</td>
<td><span lang="fr">Ressources naturelles Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Natural Resources Canada">NRCan</abbr></td>
<td><span lang="fr"><abbr title="Ressources naturelles Canada">RNCan</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Public Safety Canada</td>
<td><span lang="fr">Sécurité publique Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Public Safety Canada">PS</abbr></td>
<td><span lang="fr"><abbr title="Sécurité publique Canada">SP</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Public Services and Procurement Canada</td>
<td><span lang="fr">Services publics et Approvisionnement Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Public Services and Procurement Canada">PSPC</abbr></td>
<td><span lang="fr"><abbr title="Services publics et Approvisionnement Canada">SPAC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Environment and Climate Change Canada</td>
<td><span lang="fr">Environnement et Changement climatique Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Environment and Climate Change Canada">ECCC</abbr></td>
<td><span lang="fr"><abbr title="Environnement et Changement climatique Canada">ECCC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Transport Canada</td>
<td><span lang="fr">Transports Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Transport Canada">TC</abbr></td>
<td><span lang="fr"><abbr title="Transports Canada">TC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Veterans Affairs Canada</td>
<td><span lang="fr">Anciens Combattants Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Veterans Affairs Canada">VAC</abbr></td>
<td><span lang="fr"><abbr title="Anciens Combattants Canada">ACC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Western Economic Diversification Canada</td>
<td><span lang="fr">Diversification de l’économie de l’Ouest Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Western Economic Diversification Canada">WD</abbr></td>
<td><span lang="fr"><abbr title="Diversification de l’économie de l’Ouest Canada">DEO</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Innovation, Science and Economic Development Canada">ISED</abbr></td>
</tr>
<tr>
<td>Treasury Board of Canada Secretariat</td>
<td><span lang="fr">Secrétariat du Conseil du Trésor du Canada</span></td>
<td>Ministerial Department</td>
<td><abbr title="Treasury Board of Canada Secretariat">TBS</abbr></td>
<td><span lang="fr"><abbr title="Secrétariat du Conseil du Trésor du Canada">SCT</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Canadian Radio-television and Telecommunications Commission</td>
<td><span lang="fr">Conseil de la radiodiffusion et des télécommunications canadiennes</span></td>
<td>Departmental Agency</td>
<td><abbr title="Canadian Radio-television and Telecommunications Commission">CRTC</abbr></td>
<td><span lang="fr"><abbr title="Conseil de la radiodiffusion et des télécommunications canadiennes">CRTC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Canadian Heritage">PCH</abbr></td>
</tr>
<tr>
<td>Canadian Transportation Agency</td>
<td><span lang="fr">Office des transports du Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Canadian Transportation Agency">CTA</abbr></td>
<td><span lang="fr"><abbr title="Office des transports du Canada">OTC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Transport Canada">TC</abbr></td>
</tr>
<tr>
<td>Civilian Review and Complaints Commission for the RCMP</td>
<td><span lang="fr">Commission civile d’examen et de traitement des plaintes relatives à la GRC</span></td>
<td>Departmental Agency</td>
<td><abbr title="Civilian Review and Complaints Commission for the RCMP">CRCC</abbr></td>
<td><span lang="fr"><abbr title="Commission civile d’examen et de tratement des plaintes relatives à la GRC">CCETP</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Public Safety Canada">PS</abbr></td>
</tr>
<tr>
<td>Copyright Board Canada</td>
<td><span lang="fr">Commission du droit d’auteur Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Copyright Board Canada">CB</abbr></td>
<td><span lang="fr"><abbr title="Commission du droit d’auteur Canada">CDA</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Innovation, Science and Economic Development Canada">ISED</abbr></td>
</tr>
<tr>
<td>Immigration and Refugee Board of Canada</td>
<td><span lang="fr">Commission de l’immigration et du statut de réfugié du Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Immigration and Refugee Board of Canada">IRB</abbr></td>
<td><span lang="fr"><abbr title="Commission de l’immigration et du statut de réfugié du Canada">CISR</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Military Grievances External Review Committee</td>
<td><span lang="fr">Comité externe d’examen des griefs militaires</span></td>
<td>Departmental Agency</td>
<td><abbr title="Military Grievances External Review Committee">MGERC</abbr></td>
<td><span lang="fr"><abbr title="Comité externe d’examen des griefs militaires">CEEGM</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Department of Justice Canada">JUS</abbr></td>
</tr>
<tr>
<td>Military Police Complaints Commission of Canada</td>
<td><span lang="fr">Commission d’examen des plaintes concernant la police militaire du Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Military Police Complaints Commission of Canada">MPCC</abbr></td>
<td><span lang="fr"><abbr title="Commission d’examen des plaintes concernant la police militaire du Canada">CPPM</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Department of Justice Canada">JUS</abbr></td>
</tr>
<tr>
<td>Parole Board of Canada</td>
<td><span lang="fr">Commission des libérations conditionnelles du Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Parole Board of Canada">PBC</abbr></td>
<td><span lang="fr"><abbr title="Commission des libérations conditionnelles du Canada">CLCC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Public Safety Canada">PS</abbr></td>
</tr>
<tr>
<td>Patented Medicine Prices Review Board Canada</td>
<td><span lang="fr">Conseil d’examen du prix des médicaments brevetés Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Patented Medicine Prices Review Board Canada">PMPRB</abbr></td>
<td><span lang="fr"><abbr title="Conseil d’examen du prix des médicaments brevetés Canada">CEPMB</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Health Canada">HC</abbr></td>
</tr>
<tr>
<td>RCMP External Review Committee</td>
<td><span lang="fr">Comité externe d’examen de la GRC</span></td>
<td>Departmental Agency</td>
<td><abbr title="RCMP External Review Committee">ERC</abbr></td>
<td><span lang="fr"><abbr title="Comité externe d’examen de la GRC">CEE</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Public Safety Canada">PS</abbr></td>
</tr>
<tr>
<td>Administrative Tribunals Support Service of Canada</td>
<td><span lang="fr">Service canadien d’appui aux tribunaux administratifs</span></td>
<td>Departmental Agency</td>
<td><abbr title="Administrative Tribunals Support Service of Canada">ATSSC</abbr></td>
<td><span lang="fr"><abbr title="Service canadien d’appui aux tribunaux administratifs">SCDATA</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Department of Justice Canada">JUS</abbr></td>
</tr>
<tr>
<td>Canadian Environmental Assessment Agency</td>
<td><span lang="fr">Agence canadienne d’évaluation environnementale</span></td>
<td>Departmental Agency</td>
<td><abbr title="Canadian Environmental Assessment Agency">CEAA</abbr></td>
<td><span lang="fr"><abbr title="Agence canadienne d’évaluation environnementale">ACEE</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Environment and Climate Change Canada">ECCC</abbr></td>
</tr>
<tr>
<td>Canadian Space Agency</td>
<td><span lang="fr">Agence spatiale canadienne</span></td>
<td>Departmental Agency</td>
<td><abbr title="Canadian Space Agency">CSA</abbr></td>
<td><span lang="fr"><abbr title="Agence spatiale canadienne">ASC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Innovation, Science and Economic Development Canada">ISED</abbr></td>
</tr>
<tr>
<td>Financial Consumer Agency of Canada</td>
<td><span lang="fr">Agence de la consommation en matière financière du Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Financial Consumer Agency of Canada">FCAC</abbr></td>
<td><span lang="fr"><abbr title="Agence de la consommation en matière financière du Canada">ACFC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Department of Finance Canada">FIN</abbr></td>
</tr>
<tr>
<td>Financial Transactions and Reports Analysis Centre of Canada</td>
<td><span lang="fr">Centre d’analyse des opérations et déclarations financières du Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Financial Transactions and Reports Analysis Centre of Canada">FINTRAC</abbr></td>
<td><span lang="fr"><abbr title="Centre d’analyse des opérations et déclarations financières du Canada">CANAFE</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Department of Finance Canada">FIN</abbr></td>
</tr>
<tr>
<td>Library and Archives Canada</td>
<td><span lang="fr">Bibliothèque et Archives Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Library and Archives Canada">LAC</abbr></td>
<td><span lang="fr"><abbr title="Bibliothèque et Archives Canada">BAC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Canadian Heritage">PCH</abbr></td>
</tr>
<tr>
<td>Farm Products Council of Canada</td>
<td><span lang="fr">Conseil des produits agricoles du Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Farm Products Council of Canada">FPCC</abbr></td>
<td><span lang="fr"><abbr title="Conseil des produits agricoles du Canada">CPAC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Agriculture and Agri-Food Canada">AAFC</abbr></td>
</tr>
<tr>
<td>Northern Pipeline Agency Canada</td>
<td><span lang="fr">Administration du pipe-line du Nord Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Northern Pipeline Agency Canada">NPA</abbr></td>
<td><span lang="fr"><abbr title="Administration du pipe-line du Nord Canada">APN</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Natural Resources Canada">NRCan</abbr></td>
</tr>
<tr>
<td>Office of the Commissioner for Federal Judicial Affairs Canada</td>
<td><span lang="fr">Commissariat à la magistrature fédérale Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Office of the Commissioner for Federal Judicial Affairs Canada">FJA</abbr></td>
<td><span lang="fr"><abbr title="Commissariat à la magistrature fédérale Canada">CMF</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Department of Justice Canada">JUS</abbr></td>
</tr>
<tr>
<td>Status of Women Canada</td>
<td><span lang="fr">Condition féminine Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Status of Women Canada">SWC</abbr></td>
<td><span lang="fr"><abbr title="Condition féminine Canada">CFC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Canadian Heritage">PCH</abbr></td>
</tr>
<tr>
<td>The Correctional Investigator Canada</td>
<td><span lang="fr">L’Enquêteur correctionnel Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="The Correctional Investigator Canada">OCI</abbr></td>
<td><span lang="fr"><abbr title="L’Enquêteur correctionnel Canada">BEC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Public Safety Canada">PS</abbr></td>
</tr>
<tr>
<td>Public Prosecution Service of Canada</td>
<td><span lang="fr">Service des poursuites pénales du Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Public Prosecution Service of Canada">PPSC</abbr></td>
<td><span lang="fr"><abbr title="Service des poursuites pénales du Canada">SPPC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Department of Justice Canada">JUS</abbr></td>
</tr>
<tr>
<td>Office of the Superintendent of Financial Institutions Canada</td>
<td><span lang="fr">Bureau du surintendant des institutions financières Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Office of the Superintendent of Financial Institutions Canada">OSFI</abbr></td>
<td><span lang="fr"><abbr title="Bureau du surintendant des institutions financières Canada">BSIF</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Department of Finance Canada">FIN</abbr></td>
</tr>
<tr>
<td>Public Health Agency of Canada</td>
<td><span lang="fr">Agence de la santé publique du Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Public Health Agency of Canada">PHAC</abbr></td>
<td><span lang="fr"><abbr title="Agence de la santé publique du Canada">ASPC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Health Canada">HC</abbr></td>
</tr>
<tr>
<td>Public Service Commission of Canada</td>
<td><span lang="fr">Commission de la fonction publique du Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Public Service Commission of Canada">PSC</abbr></td>
<td><span lang="fr"><abbr title="Commission de la fonction publique du Canada">CFP</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Public Services and Procurement Canada">PSPC</abbr></td>
</tr>
<tr>
<td>Canadian Northern Economic Development Agency</td>
<td><span lang="fr">Agence canadienne de développement économique du Nord</span></td>
<td>Departmental Agency</td>
<td><abbr title="Canadian Northern Economic Development Agency">CanNor</abbr></td>
<td><span lang="fr"><abbr title="Agence canadienne de développement économique du Nord">CanNor</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Innovation, Science and Economic Development Canada">ISED</abbr></td>
</tr>
<tr>
<td>Communications Security Establishment</td>
<td><span lang="fr">Centre de la sécurité des télécommunications</span></td>
<td>Departmental Agency</td>
<td><abbr title="Communications Security Establishment">CSEC</abbr></td>
<td><span lang="fr"><abbr title="Centre de la sécurité des télécommunications">CSTC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="National Defence">DND</abbr></td>
</tr>
<tr>
<td>Correctional Service Canada</td>
<td><span lang="fr">Service correctionnel Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Correctional Service Canada">CSC</abbr></td>
<td><span lang="fr"><abbr title="Service correctionnel Canada">SCC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Public Safety Canada">PS</abbr></td>
</tr>
<tr>
<td>Canada Economic Development for Quebec Regions</td>
<td><span lang="fr">Développement économique Canada pour les régions du Québec</span></td>
<td>Departmental Agency</td>
<td><abbr title="Canada Economic Development for Quebec Regions">CED</abbr></td>
<td><span lang="fr"><abbr title="Développement économique Canada pour les régions du Québec">DEC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Innovation, Science and Economic Development Canada">ISED</abbr></td>
</tr>
<tr>
<td>Federal Economic Development Agency for Southern Ontario</td>
<td><span lang="fr">Agence fédérale de développement économique pour le Sud de l’Ontario</span></td>
<td>Departmental Agency</td>
<td><abbr title="Federal Economic Development Agency for Southern Ontario">FedDev Ontario</abbr></td>
<td><span lang="fr"><abbr title="Agence fédérale de développement économique pour le Sud de l’Ontario">FedDev Ontario</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Innovation, Science and Economic Development Canada">ISED</abbr></td>
</tr>
<tr>
<td>Infrastructure Canada</td>
<td><span lang="fr">Infrastructure Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Infrastructure Canada">INFC</abbr></td>
<td><span lang="fr"><abbr title="Infrastructure Canada">INFC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Privy Council Office</td>
<td><span lang="fr">Bureau du Conseil privé</span></td>
<td>Departmental Agency</td>
<td><abbr title="Privy Council Office">PCO</abbr></td>
<td><span lang="fr"><abbr title="Bureau du Conseil privé">BCP</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Shared Services Canada</td>
<td><span lang="fr">Services partagés Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Shared Services Canada">SSC</abbr></td>
<td><span lang="fr"><abbr title="Services partagés Canada">SPC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Public Services and Procurement Canada">PSPC</abbr></td>
</tr>
<tr>
<td>Statistics Canada</td>
<td><span lang="fr">Statistique Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Statistics Canada">StatCan</abbr></td>
<td><span lang="fr"><abbr title="Statistique Canada">StatCan</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Innovation, Science and Economic Development Canada">ISED</abbr></td>
</tr>
<tr>
<td>National Energy Board</td>
<td><span lang="fr">Office national de l’énergie</span></td>
<td>Departmental Agency</td>
<td><abbr title="National Energy Board">NEB</abbr></td>
<td><span lang="fr"><abbr title="Office national de l’énergie">ONE</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Natural Resources Canada">NRCan</abbr></td>
</tr>
<tr>
<td>Security Intelligence Review Committee</td>
<td><span lang="fr">Comité de surveillance des activités de renseignement de sécurité</span></td>
<td>Departmental Agency</td>
<td><abbr title="Security Intelligence Review Committee">SIRC</abbr></td>
<td><span lang="fr"><abbr title="Comité de surveillance des activités de renseignement de sécurité">CSARS</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Veterans Review and Appeal Board</td>
<td><span lang="fr">Tribunal des anciens combattants (révision et appel)</span></td>
<td>Departmental Agency</td>
<td><abbr title="Veterans Review and Appeal Board">VRAB</abbr></td>
<td><span lang="fr"><abbr title="Tribunal des anciens combattants (révision et appel)">TACRA</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Veterans Affairs Canada">VAC</abbr></td>
</tr>
<tr>
<td>Canadian Grain Commission</td>
<td><span lang="fr">Commission canadienne des grains</span></td>
<td>Departmental Agency</td>
<td><abbr title="Canadian Grain Commission">CGC</abbr></td>
<td><span lang="fr"><abbr title="Commission canadienne des grains">CCG</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Agriculture and Agri-Food Canada">AAFC</abbr></td>
</tr>
<tr>
<td>Canadian Human Rights Commission</td>
<td><span lang="fr">Commission canadienne des droits de la personne</span></td>
<td>Departmental Agency</td>
<td><abbr title="Canadian Human Rights Commission">CHRC</abbr></td>
<td><span lang="fr"><abbr title="Commission canadienne des droits de la personne">CCDP</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Department of Justice Canada">JUS</abbr></td>
</tr>
<tr>
<td>Canadian Security Intelligence Service</td>
<td><span lang="fr">Service canadien du renseignement de sécurité</span></td>
<td>Departmental Agency</td>
<td><abbr title="Canadian Security Intelligence Service">CSIS</abbr></td>
<td><span lang="fr"><abbr title="Service canadien du renseignement de sécurité">SCRS</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Public Safety Canada">PS</abbr></td>
</tr>
<tr>
<td>National Film Board</td>
<td><span lang="fr">Office national du film</span></td>
<td>Departmental Agency</td>
<td><abbr title="National Film Board">NFB</abbr></td>
<td><span lang="fr"><abbr title="Office national du film">ONF</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Canadian Heritage">PCH</abbr></td>
</tr>
<tr>
<td>Office of the Communications Security Establishment Commissioner</td>
<td><span lang="fr">Bureau du commissaire du Centre de la sécurité des télécommunications</span></td>
<td>Departmental Agency</td>
<td><abbr title="Office of the Communications Security Establishment Commissioner">OCSEC</abbr></td>
<td><span lang="fr"><abbr title="Bureau du commissaire du Centre de la sécurité des télécommunications">BCCST</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="National Defence">DND</abbr></td>
</tr>
<tr>
<td>Royal Canadian Mounted Police</td>
<td><span lang="fr">Gendarmerie royale du Canada</span></td>
<td>Departmental Agency</td>
<td><abbr title="Royal Canadian Mounted Police">RCMP</abbr></td>
<td><span lang="fr"><abbr title="Gendarmerie royale du Canada">GRC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Public Safety Canada">PS</abbr></td>
</tr>
<tr>
<td>Atlantic Canada Opportunities Agency</td>
<td><span lang="fr">Agence de promotion économique du Canada atlantique</span></td>
<td>Departmental Agency</td>
<td><abbr title="Atlantic Canada Opportunities Agency">ACOA</abbr></td>
<td><span lang="fr"><abbr title="Agence de promotion économique du Canada atlantique">APECA</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Innovation, Science and Economic Development Canada">ISED</abbr></td>
</tr>
<tr>
<td>Canadian Nuclear Safety Commission</td>
<td><span lang="fr">Commission canadienne de sûreté nucléaire</span></td>
<td>Departmental Corporation</td>
<td><abbr title="Canadian Nuclear Safety Commission">CNSC</abbr></td>
<td><span lang="fr"><abbr title="Commission canadienne de sûreté nucléaire">CCSN</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Natural Resources Canada">NRCan</abbr></td>
</tr>
<tr>
<td>Transportation Safety Board of Canada</td>
<td><span lang="fr">Bureau de la sécurité des transports du Canada</span></td>
<td>Departmental Corporation</td>
<td><abbr title="Transportation Safety Board of Canada">TSB</abbr></td>
<td><span lang="fr"><abbr title="Bureau de la sécurité des transports du Canada">BST</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td> </td>
</tr>
<tr>
<td>Canada Employment Insurance Commission</td>
<td><span lang="fr">Commission de l’assurance-emploi du Canada</span></td>
<td>Departmental Corporation</td>
<td><abbr title="Canada Employment Insurance Commission">CEIC</abbr></td>
<td><span lang="fr"><abbr title="Commission de l’assurance-emploi du Canada">CAEC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Employment and Social Development Canada">ESDC</abbr></td>
</tr>
<tr>
<td>Polar Knowledge Canada</td>
<td><span lang="fr">Savoir polaire Canada</span></td>
<td>Departmental Corporation</td>
<td><abbr title="Polar Knowledge Canada">POLAR</abbr></td>
<td><span lang="fr"><abbr title="Savoir polaire Canada">POLAIRE</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Crown-Indigenous Relations and Northern Affairs Canada">CIRNAC</abbr></td>
</tr>
<tr>
<td>The National Battlefields Commission</td>
<td><span lang="fr">Commission des champs de bataille nationaux</span></td>
<td>Departmental Corporation</td>
<td><abbr title="The National Battlefields Commission">NBC</abbr></td>
<td><span lang="fr"><abbr title="Commission des champs de bataille nationaux">CCBN</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Canadian Heritage">PCH</abbr></td>
</tr>
<tr>
<td>National Research Council Canada</td>
<td><span lang="fr">Conseil national de recherches Canada</span></td>
<td>Departmental Corporation</td>
<td><abbr title="National Research Council Canada">NRC</abbr></td>
<td><span lang="fr"><abbr title="Conseil national de recherches Canada">CNRC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Innovation, Science and Economic Development Canada">ISED</abbr></td>
</tr>
<tr>
<td>Natural Sciences and Engineering Research Council</td>
<td><span lang="fr">Conseil de recherches en sciences naturelles et en génie</span></td>
<td>Departmental Corporation</td>
<td><abbr title="Natural Sciences and Engineering Research Council">NSERC</abbr></td>
<td><span lang="fr"><abbr title="Conseil de recherches en sciences naturelles et en génie">GRSGC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Innovation, Science and Economic Development Canada">ISED</abbr></td>
</tr>
<tr>
<td>Parks Canada</td>
<td><span lang="fr">Parcs Canada</span></td>
<td>Departmental Corporation</td>
<td><abbr title="Parks Canada">PC</abbr></td>
<td><span lang="fr"><abbr title="Parcs Canada">PC</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Environment and Climate Change Canada">ECCC</abbr></td>
</tr>
<tr>
<td>Social Sciences and Humanities Research Council of Canada</td>
<td><span lang="fr">Conseil de recherches en sciences humaines du Canada</span></td>
<td>Departmental Corporation</td>
<td><abbr title="Social Sciences and Humanities Research Council of Canada">SSHRC</abbr></td>
<td><span lang="fr"><abbr title="Conseil de recherches en sciences humaines du Canada">CRSH</abbr></span></td>
<td><a href="https://design.canada.ca/mandatory-templates/institutional-profile-pages.html">Institutional Profile</a></td>
<td><abbr title="Innovation, Science and Economic Development Canada">ISED</abbr></td>