Skip to content

Instantly share code, notes, and snippets.

@ericalli
Created March 6, 2013 00:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericalli/5095758 to your computer and use it in GitHub Desktop.
Save ericalli/5095758 to your computer and use it in GitHub Desktop.
<% if @facility.has_admin(@current_user) %>
<div id="profile_link" class="box">
<div class="title">
<h4>
<%= icon_tag "link" %>
Share Facility
</h4>
</div>
<div class="content">
<span><input type="radio" name="link_type" class="checkbox" value="link" checked="checked" data-value="<%= facility_url(@facility) %>" /> Facility Link</span>
<input type="radio" name="link_type" class="checkbox" value="id" data-value="<%= @facility.id %>" /> Facility ID
<div class="form" style="margin-top: 8px; margin-bottom: 5px;">
<input type="text" class="text" value="<%= facility_url(@facility) %>" style="width: 95%; font-size: 13px; padding: 6px; color: #888;" />
</div>
</div>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment