Event definiteion updates
This commit is contained in:
@@ -25,6 +25,8 @@ namespace WebApp.Models
|
||||
public static string OnSiteActivity = "ⓐ";
|
||||
public static string RegionalEvent = "ⓡ";
|
||||
public static string IndividualEvent = "ⓘ";
|
||||
public static string PresubmissionEvent = "🕑";
|
||||
public static string PresentationEvent = "ⓟ";
|
||||
public static string QuestionMark = "❔";
|
||||
|
||||
public static string EventEffort(EventDefinition eventDefinition)
|
||||
@@ -38,8 +40,12 @@ namespace WebApp.Models
|
||||
|
||||
if (eventDefinition.EventFormat == EventFormat.Individual)
|
||||
v.Add(IndividualEvent);
|
||||
if (eventDefinition.InterviewOrPresentation)
|
||||
v.Add(PresentationEvent);
|
||||
if (eventDefinition.OnSiteActivity)
|
||||
v.Add(OnSiteActivity);
|
||||
if (eventDefinition.Presubmission)
|
||||
v.Add(PresubmissionEvent);
|
||||
if (eventDefinition.RegionalEvent)
|
||||
v.Add(RegionalEvent);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user