YaleSTC/shifts

View on GitHub
app/views/user_profile_fields/show.html.erb

Summary

Maintainability
Test Coverage
<% title "User Profile Field" %>

<p>
  <strong>Name:</strong>
  <%= @user_profile_field.name %>
</p>
<p>
  <strong>Display Type:</strong>
  <%= @user_profile_field.display_type %>
</p>
<p>
  <strong>Values:</strong>
  <%= @user_profile_field.values %>
</p>
<p>
  <strong>Public:</strong>
  <%= @user_profile_field.public %>
</p>
<p>
  <strong>User Editable:</strong>
  <%= @user_profile_field.user_editable %>
</p>

<p>
  <%= link_to "Edit", edit_user_profile_field_path(@user_profile_field) %> |
  <%= link_to "Destroy", @user_profile_field, confirm: 'Are you sure?', method: :delete %> |
  <%= link_to "View All", user_profile_fields_path %>
</p>