Adjust input boxes to fit the screen better on mobile, and to use consistent sizes throughout the site (no ad-hoc overrides to make certain input boxes a bit bigger in random places). On desktop, this makes most input boxes a bit taller and narrower. On mobile, it makes input boxes the full width of the screen. This most notably affects the tag edit box, the comment and forum post box, the wiki page edit box, and the commentary box.
7 lines
632 B
Plaintext
7 lines
632 B
Plaintext
<%= edit_form_for(api_key, html: { class: "stacked-hints" }) do |f| %>
|
|
<%= f.input :name, as: :string, hint: "An optional name to help you remember what this key is for." %>
|
|
<%= f.input :permitted_ip_addresses, label: "IP Addresses", as: :string, hint: "An optional list of IPs allowed to use this key. Leave blank to allow all IPs." %>
|
|
<%= f.input :permissions, as: :select, collection: ApiKey.permissions_list, hint: "An optional list of API endpoints this key can use. Ctrl+click to select multiple endpoints. Leave blank to allow all API endpoints.", input_html: { multiple: true } %>
|
|
<%= f.submit "Create" %>
|
|
<% end %>
|