diff options
author | Gareth Rees <gareth@mysociety.org> | 2014-04-14 12:53:04 +0100 |
---|---|---|
committer | Gareth Rees <gareth@mysociety.org> | 2014-04-14 14:13:56 +0100 |
commit | 77eba1956f318510247163133197b64f08b9c1e1 (patch) | |
tree | 99485ab61bad04eadea5e49cfbefda46493223d6 | |
parent | 97075669802ec9e99bbcb5b52f539b3e3bbf2487 (diff) |
Remove unrecognised field from import_csv example
`id` is not a recognised attribute when uploading from a CSV.
-rw-r--r-- | app/views/admin_public_body/import_csv.html.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/admin_public_body/import_csv.html.erb b/app/views/admin_public_body/import_csv.html.erb index 17394be14..d15ef1791 100644 --- a/app/views/admin_public_body/import_csv.html.erb +++ b/app/views/admin_public_body/import_csv.html.erb @@ -45,9 +45,9 @@ </p> <pre> -#id,name,request_email,name.es,tag_string -1,An Authority,a@example.com,Un organismo,a_tag another_tag -2,Another One,another@example.com,Otro organismo,a_tag +#name,request_email,name.es,tag_string +An Authority,a@example.com,Un organismo,a_tag another_tag +Another One,another@example.com,Otro organismo,a_tag </pre> <p><strong>Supported fields:</strong> |