added drag and drop for new records via calendar (#1962)
This commit is contained in:
@@ -21,8 +21,14 @@
|
||||
{% endif %}
|
||||
|
||||
<div class="progress-group">
|
||||
<span class="progress-text">{{ title }}{% if percentReached > 0 %} – {{ percentReached|number_format(2) }}%{% endif %}</span>
|
||||
<span class="progress-number">{{ subTitle }}</span>
|
||||
<span class="progress-text">{{ title }}{% if percentReached >= 0 and subTitle is not empty %} – {{ percentReached|number_format(2) }}%{% endif %}</span>
|
||||
<span class="progress-number">
|
||||
{% if percentReached >= 0 and subTitle is empty %}
|
||||
{{ percentReached|number_format(2) }}%
|
||||
{% elseif subTitle is not empty %}
|
||||
{{ subTitle }}
|
||||
{% endif %}
|
||||
</span>
|
||||
|
||||
<div class="progress">
|
||||
<div class="progress-bar {{ class }}" role="progressbar" aria-valuenow="{{ width }}" aria-valuemin="0" aria-valuemax="100" style="width: {{ width }}%"></div>
|
||||
|
||||
Reference in New Issue
Block a user