We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hard-coding the from and to values work fine:
from
to
<perch:sharing id="google_cal" title="Perch CMS workshop" from="2019-04-02 09:00" to="2019-04-02 10:00">
However, a common use-case would be to use a start and an end date/time (e.g. for an event):
<perch:content id="title" type="text" label="Title" required> <perch:content id="event_start_date_time" type="date" time required> <perch:content id="event_end_date_time" type="date" time required> <perch:sharing id="google_cal" title="{title}" from="{start_date_time}" to="{end_date_time}">
However, the above does not work at the moment (v2.0.2) and results in an error.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hard-coding the
from
andto
values work fine:However, a common use-case would be to use a start and an end date/time (e.g. for an event):
However, the above does not work at the moment (v2.0.2) and results in an error.
The text was updated successfully, but these errors were encountered: