mirror of
https://github.com/plausible/analytics.git
synced 2024-12-24 10:02:10 +03:00
70997abfc7
* Turn .eex templates into .heex * Add new compile-time presets to `PlausibleWeb` * Fix remaining templates * Update static components * Update live components * Update live views * Update rest of the owl * Update mjml template * Format * Format * Revert MJML stuff, it's coupled with EEx * yawn at test * Get rid of `FormHelpers` module * Ensure YOU label shows up first on IP rules list * Update lib/plausible_web/templates/email/welcome_email.html.heex Co-authored-by: Artur Pata <artur.pata@gmail.com> * Fix create site email link * Fix server error markup (and turn thanks into heex) * Format --------- Co-authored-by: Artur Pata <artur.pata@gmail.com>
16 lines
744 B
Plaintext
16 lines
744 B
Plaintext
Automated notice about an enterprise account that has gone over their limits. <br /><br />
|
|
Customer email: <%= @user.email %><br />
|
|
Last billing cycle: <%= PlausibleWeb.TextHelpers.format_date_range(
|
|
@pageview_usage.last_cycle.date_range
|
|
) %><br />
|
|
Last cycle pageview usage: <%= PlausibleWeb.AuthView.delimit_integer(
|
|
@pageview_usage.last_cycle.total
|
|
) %> billable pageviews<br />
|
|
Penultimate billing cycle: <%= PlausibleWeb.TextHelpers.format_date_range(
|
|
@pageview_usage.penultimate_cycle.date_range
|
|
) %><br />
|
|
Penultimate cycle pageview usage: <%= PlausibleWeb.AuthView.delimit_integer(
|
|
@pageview_usage.penultimate_cycle.total
|
|
) %> billable pageviews<br />
|
|
Site usage: <%= @site_usage %> / <%= @site_allowance %> allowed sites<br />
|