[Scouting App] Add Driver Ranking

Move the driver ranking data collection from google forms to the scouting app.
The data collected is used to calculate a overall driver rank for the picklist.

Signed-off-by: Filip Kujawa <filip.j.kujawa@gmail.com>
Change-Id: Id459e8dec1fa79c1a9f49cc40ffa83014e51db16
diff --git a/scouting/www/app.ng.html b/scouting/www/app.ng.html
index 297fd39..d9dbead 100644
--- a/scouting/www/app.ng.html
+++ b/scouting/www/app.ng.html
@@ -40,6 +40,15 @@
   <li class="nav-item">
     <a
       class="nav-link"
+      [class.active]="tabIs('DriverRanking')"
+      (click)="switchTabToGuarded('DriverRanking')"
+    >
+      Driver Ranking
+    </a>
+  </li>
+  <li class="nav-item">
+    <a
+      class="nav-link"
       [class.active]="tabIs('ImportMatchList')"
       (click)="switchTabToGuarded('ImportMatchList')"
     >
@@ -80,6 +89,7 @@
     *ngSwitchCase="'Entry'"
   ></app-entry>
   <frc971-notes *ngSwitchCase="'Notes'"></frc971-notes>
+  <app-driver-ranking *ngSwitchCase="'DriverRanking'"></app-driver-ranking>
   <app-import-match-list
     *ngSwitchCase="'ImportMatchList'"
   ></app-import-match-list>