]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/oauth2_authorized_applications/index.html.erb
Rework some of the OAuth2 views, adding links and messages when there are no applicat...
[rails.git] / app / views / oauth2_authorized_applications / index.html.erb
index dca65e9f9648e2d530ef82508edc43e15e4cd7c3..336de14060d7f9a106b213f6926a061019812dc0 100644 (file)
@@ -2,13 +2,17 @@
   <h1><%= t ".title" %></h1>
 <% end %>
 
-<table class="table table-borderless table-striped">
-  <thead>
-    <th><%= t ".application" %></th>
-    <th><%= t ".permissions" %></th>
-    <th></th>
-  </thead>
-  <tbody>
-    <%= render :partial => "application", :collection => @applications %>
-  </tbody>
-</table>
+<% if @applications.length > 0 %>
+  <table class="table table-borderless table-striped">
+    <thead>
+      <th><%= t ".application" %></th>
+      <th><%= t ".permissions" %></th>
+      <th></th>
+    </thead>
+    <tbody>
+      <%= render :partial => "application", :collection => @applications %>
+    </tbody>
+  </table>
+<% else %>
+  <p><%= t ".no_applications_html", :oauth2 => link_to(t(".oauth_2"), "https://oauth.net/2/") %></p>
+<% end %>