openstreetmap-website/app/views/site/id.html.erb
Harry Wood 51b7c3a5be More readable multi-line ruby in erbs
A couple of erb files had unnecessary start and end erb tags around every line in a multi-line block of ruby. More readable this way.
2022-03-05 02:56:43 +00:00

23 lines
674 B
Text

<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<%= stylesheet_link_tag "id" %>
<!--[if !IE || gte IE 9]><!-->
<%= javascript_include_tag "id" %>
<!-- <![endif]-->
</head>
<body>
<% data = {}
if Settings.key?(:id_key)
token = current_user.access_token(Settings.id_key)
data[:token] = token.token
data[:token_secret] = token.secret
data[:consumer_key] = token.client_application.key
data[:consumer_secret] = token.client_application.secret
end
data[:locale] = ID::LOCALES.preferred(preferred_languages).to_s
data[:asset_map] = assets("iD").to_json %>
<%= tag.div "", :id => "id-container", :data => data %>
</body>
</html>