Skip to content
Snippets Groups Projects
Commit 4b29ada8 authored by Teal's avatar Teal
Browse files

number formatting fix

parent 01c3bfc0
No related branches found
No related tags found
No related merge requests found
...@@ -30,10 +30,10 @@ ...@@ -30,10 +30,10 @@
</li> </li>
<li><%= @unique_speakers %> unique speakers <li><%= @unique_speakers %> unique speakers
<ul> <ul>
<li>ø <%= @speakers_per_session %> speakers per session</li> <li>ø <%= @speakers_per_session.round(2) %> speakers per session</li>
</ul> </ul>
</li> </li>
<li><%= @total_stats[:scheduled_time_min] %> minutes of sessions (<%= (@total_stats[:scheduled_time_min] / 60.0).round(2) %> hours) scheduled total</li> <li><%= @total_stats[:scheduled_time_min].round %> minutes of sessions (<%= (@total_stats[:scheduled_time_min] / 60.0).round(2) %> hours) scheduled total</li>
</ul> </ul>
</div> </div>
</div> </div>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment