diff --git a/includes/important_dates.php b/includes/important_dates.php index d57e8d8..16173c9 100644 --- a/includes/important_dates.php +++ b/includes/important_dates.php @@ -4,59 +4,45 @@ with what is in json/metadata.json, which is why we use $META['submitdate'] and $META['dates']. */ -?> -
-

- Important Dates -

-
-
- -
-

- Submission deadline at 21:00 UTC -

-
-
-
- -
-

- First round notification -

-
-
+function showDate($key, $title) { + global $META; + if (!array_key_exists($key, $META) || $META[$key] == null) { + return; + } + $date = $META[$key]; + echo <<< EOR +
- + $date

- Rebuttal deadline at 11:45 UTC -

-
-
-
- -
-

- Final notification -

-
-
-
- -
-

- Final version due + $title

+ EOR; +} +?> +
+

+ Important Dates +

+ + + + + + + +
For further details, consult the paper submission page. diff --git a/json/metadata.json b/json/metadata.json index ccf8a8c..78d55ca 100644 --- a/json/metadata.json +++ b/json/metadata.json @@ -12,7 +12,8 @@ "submitdate": "11 Feb 2020", "firstRound": "2 Apr 2020", "rebuttalDue": "21 Apr 2020", - "finalNotification": "26 Apr 2020", + "notificationdate": "26 Apr 2020", + "finalversions": null, "cameraReady": "5 Jul 2022", "latitude": -119.84698971268, "longitude": 34.411605668706,