]> git.openstreetmap.org Git - rails.git/blob - app/views/site/edit.html.erb
Merge remote-tracking branch 'upstream/pull/3561'
[rails.git] / app / views / site / edit.html.erb
1 <% content_for :content do %>
2   <% if Settings.status == "database_offline" or Settings.status == "api_offline" %>
3     <p><%= t "layouts.osm_offline" %></p>
4   <% elsif Settings.status == "database_readonly" or Settings.status == "api_readonly" %>
5     <p><%= t "layouts.osm_read_only" %></p>
6   <% elsif !current_user.data_public? %>
7     <p><%= t ".not_public" %></p>
8     <p><%= t ".not_public_description_html", :user_page => (link_to t(".user_page_link"), edit_account_path(:anchor => "public")) %></p>
9     <p><%= t ".anon_edits_html", :link => link_to(t(".anon_edits_link_text"), t(".anon_edits_link")) %></p>
10   <% else %>
11     <%= render :partial => preferred_editor %>
12   <% end %>
13 <% end %>