diff --git a/docs/apps/guides/03-csv-support.mdx b/docs/apps/guides/03-csv-support.mdx index c2351224..c36b90c7 100644 --- a/docs/apps/guides/03-csv-support.mdx +++ b/docs/apps/guides/03-csv-support.mdx @@ -7,6 +7,21 @@ title: "CSV Support" The Sablier Interface provides a number of **advanced** features using templated CSV files. Bellow you can find a list of all these features that help automate medium to large scale distributions. +:::warning Date and time Caveats + +**Dates**: All the columns that use the "date" type should have the following format: "YYYY-MM-DD HH:mm". + +**Durations**: All the columns that use the "duration" type should have the following format: "**x** years **y** days +**z** hours". Note that each particle is optional, e.g., you can skip the days. + +**Timezones**: The dates and times extracted from the CSV are processed using the same timezone as the locales of the +client's device. + +**Amounts**: All the amounts should be expressed in humanized notion. They will be padded with the selected token's +number of decimals in the processing step. + +::: + ## Streams: Create Group | | @@ -98,18 +113,6 @@ For convenience, here's a table with all the available templates: In order to properly use the CSV create feature you will have to provide data in the proper format for each column. Bellow you can find a list with each possible column, a short description and an example value. -:::warning Date and time Caveats - -**Dates**: All the columns that use the "date" type should have the following format: "YYYY-MM-DD HH:mm". - -**Durations**: All the columns that use the "duration" type should have the following format: "**x** years **y** days -**z** hours". Note that each particle is optional, e.g., you can skip the days. - -**Timezones**: The dates and times extracted from the CSV are processed using the same timezone as the locales of the -client's device. - -::: - :::info If editing the CSV in Google Spreadsheets or similar applications, make sure that these formats are not overridden by diff --git a/docusaurus.config.ts b/docusaurus.config.ts index e25d0ec8..da9e3cb9 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -85,6 +85,10 @@ const config: Config = { from: "/apps/csv-support", to: "/apps/guides/csv-support", }, + { + from: "/csv", + to: "/apps/guides/csv-support", + }, ], }, ], diff --git a/static/screenshots/create-group-template-modal.png b/static/screenshots/create-group-template-modal.png index 7957157b..f69ae787 100644 Binary files a/static/screenshots/create-group-template-modal.png and b/static/screenshots/create-group-template-modal.png differ