mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-25 19:48:48 +01:00
* Hide tags and overdue date on phones * Depend on released twitter-bootstrap-rails instead of their master tree
18 lines
No EOL
806 B
Text
18 lines
No EOL
806 B
Text
<h3 class="project-name-container"><%= show_project_name(project) %> </h3>
|
|
<div class="project-badges">
|
|
<a class="badge tracks-popover-toggle" title=""
|
|
data-placement="bottom" rel="tracks-popover" href="#"
|
|
data-original-title="<%= project.name %>" data-html="true"
|
|
data-content="<div class='project-details'><%= project_details(project) %></div>">
|
|
<i class="icon-info-sign"></i> Details
|
|
</a>
|
|
<a class="badge hide tracks-badge-description" title="Show project description" href="#">
|
|
<i class="icon-book"></i> Description
|
|
</a>
|
|
</div>
|
|
<% unless project.description.blank? %>
|
|
<div class='project-description alert alert-info'>
|
|
<button type="button" class="close">×</button>
|
|
<small><%= Tracks::Utils.render_text(project.description) %></small>
|
|
</div>
|
|
<% end %> |