mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-05 03:52:14 +00:00
12 lines
383 B
Text
12 lines
383 B
Text
<% if current_user %>
|
|
<div id="progressbar" style="width:30%;">
|
|
<span id="tnl">(Level <%= current_user.lvl %>) <%= current_user.exp.to_i.to_s + "/" + current_user.tnl.to_i.to_s %></span>
|
|
</div>
|
|
<script>
|
|
$(function() {
|
|
$( "#progressbar" ).progressbar({
|
|
value: <%= (current_user.exp/current_user.tnl) * 100 %>
|
|
});
|
|
});
|
|
</script>
|
|
<% end %>
|