diff options
-rw-r--r-- | app/views/admin_public_body/_locale_selector.rhtml | 10 | ||||
-rw-r--r-- | app/views/general/_orglink.rhtml | 2 |
2 files changed, 12 insertions, 0 deletions
diff --git a/app/views/admin_public_body/_locale_selector.rhtml b/app/views/admin_public_body/_locale_selector.rhtml new file mode 100644 index 000000000..6ba96b72e --- /dev/null +++ b/app/views/admin_public_body/_locale_selector.rhtml @@ -0,0 +1,10 @@ +<div id="locale_switcher"> +Language: +<% for possible_locale in @locales %> + <% if possible_locale == @locale %> + <%= possible_locale %> + <% else %> + <a href="?show_locale=<%=possible_locale%>"><%= possible_locale %></a> + <% end %> +<% end %> +</div> diff --git a/app/views/general/_orglink.rhtml b/app/views/general/_orglink.rhtml new file mode 100644 index 000000000..551b18646 --- /dev/null +++ b/app/views/general/_orglink.rhtml @@ -0,0 +1,2 @@ +<%-# Put the link to your organisation here, or leave blank -%> +<a href="http://www.mysociety.org">a site by mysociety.org</a> |