1
0
mirror of https://github.com/kihashi/stardew_community_checklist.git synced 2025-10-19 08:03:17 +00:00

Added numbers to complement the progress bars.

This should make it easier to track bundle completion rates.

Closes #40.
This commit is contained in:
John Cleaver 2016-04-13 10:44:31 -04:00
parent ea40231487
commit 352fa755d3

View File

@ -167,14 +167,24 @@
<div class="column">
<div class="columns">
<div class="column">
<h3 class="title">{{ static.bundles[active_bundle].name }}</h3>
<h3 class="title">
{{ static.bundles[active_bundle].name }}
<span class="is-pulled-right">
{{ user_data[active_bundle].length }} / {{ static.bundles[active_bundle].items_required }}
</span>
</h3>
<h5 class="subtitle">{{ static.bundles[active_bundle].reward }}</h5>
<progress class="progress is-info"
value="{{ user_data[active_bundle].length }}"
max="{{ static.bundles[active_bundle].items_required }}"></progress>
</div>
<div class="column">
<h3 class="title">{{ static.rooms[static.bundles[active_bundle].room].name }}</h3>
<h3 class="title">
{{ static.rooms[static.bundles[active_bundle].room].name }}
<span class="is-pulled-right">
{{ getRoomItemsChecked(static.bundles[active_bundle].room) }} / {{ getRoomItemsRequired(static.bundles[active_bundle].room) }}
</span>
</h3>
<h5 class="subtitle">{{ static.rooms[static.bundles[active_bundle].room].reward }}</h5>
<progress class="progress is-info"
value="{{ getRoomItemsChecked(static.bundles[active_bundle].room) }}"