diff options
author | Dave Whiteland <dave@mysociety.org> | 2013-11-06 22:02:52 +0000 |
---|---|---|
committer | Dave Whiteland <dave@mysociety.org> | 2013-11-07 12:41:19 +0000 |
commit | 97b2a11ad389aee8fb7e0764e558225781a164ae (patch) | |
tree | 8fe03e1fa8bc7f13f81a9983adb06ff593223f37 | |
parent | 11eab901ea247c8164b32ed855b403d98347c1e2 (diff) |
fix typo and localise placeholders
-rw-r--r-- | templates/web/default/admin/stats.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/web/default/admin/stats.html b/templates/web/default/admin/stats.html index 74f8d4225..d143d9f28 100644 --- a/templates/web/default/admin/stats.html +++ b/templates/web/default/admin/stats.html @@ -62,13 +62,13 @@ <form method="post" action="[% c.uri_for('stats') %]" enctype="application/x-www-form-urlencoded" accept-charset="utf-8"> <p> <label for="start_date">[% loc('Start Date:') %]</label><input type="text" - placeholder="Clik here or enter as dd/mm/yyyy" name="start_date" id="start_date" + placeholder="[% loc('Click here or enter as dd/mm/yyyy') %]" name="start_date" id="start_date" value="[% start_date ? start_date.strftime( '%d/%m/%Y') : '' | html %]" /> </p> <p> <label for="end_date">[% loc('End Date:') %]</label><input type="text" - placeholder="Clik here or enter as dd/mm/yyyy" name="end_date" id="end_date" size="5" + placeholder="[% loc('Click here or enter as dd/mm/yyyy') %]" name="end_date" id="end_date" size="5" value="[% end_date ? end_date.strftime( '%d/%m/%Y') : '' | html %]" /> </p> |