Noosfero/noosfero

View on GitHub
plugins/oauth_provider/views/doorkeeper/applications/_form.html.erb

Summary

Maintainability
Test Coverage
<% extend Doorkeeper::DashboardHelper %>
<%= form_for application, url: doorkeeper_submit_path(application), html: {class: 'form-horizontal', role: 'form'} do |f| %>
  <% if application.errors.any? %>
    <div class="alert alert-danger" data-alert><p><%= _('Whoops! Check your form for possible errors') %></p></div>
  <% end %>

  <%= content_tag :div, class: "form-group#{' has-error' if application.errors[:name].present?}" do %>
    <%= f.label :name, class: 'col-sm-2 control-label' %>
    <div class="col-sm-10">
      <%= f.text_field :name, class: 'form-control' %>
      <%= doorkeeper_errors_for application, :name %>
    </div>
  <% end %>

  <%= content_tag :div, class: "form-group#{' has-error' if application.errors[:redirect_uri].present?}" do %>
    <%= f.label :redirect_uri, class: 'col-sm-2 control-label' %>
    <div class="col-sm-10">
      <%= f.text_area :redirect_uri, class: 'form-control' %>
      <%= doorkeeper_errors_for application, :redirect_uri %>
      <span class="help-block">
        <%= _('Use one line per URI') %>
      </span>
      <% if Doorkeeper.configuration.native_redirect_uri %>
          <span class="help-block">
            <%= raw _('Use %s to local tests') % "<code>#{ Doorkeeper.configuration.native_redirect_uri }</code>" %>
          </span>
      <% end %>
    </div>
  <% end %>

  <%= content_tag :div, class: "form-group#{' has-error' if application.errors[:scopes].present?}" do %>
    <%= f.label :scopes, class: 'col-sm-2 control-label' %>
    <div class="col-sm-10">
      <%= f.text_field :scopes, class: 'form-control' %>
      <%= doorkeeper_errors_for application, :scopes %>
      <span class="help-block">
        <%= _('Separate scopes with spaces. Leave blank to use the default scopes.') %>
      </span>
    </div>
  <% end %>

  <div class="form-group">
    <div class="col-sm-offset-2 col-sm-10">
      <%= f.submit _('Submit'), class: "btn btn-primary" %>
      <%= link_to _('Cancel'), oauth_applications_path, :class => "btn btn-default" %>
    </div>
  </div>
<% end %>