25 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% load i18n %}
 | |
| {% load humanize %}
 | |
| 
 | |
| {% with goal.progress as progress %}
 | |
| <p>
 | |
|     {% if progress.percent >= 100 %}
 | |
|         {% trans "Success!" context "Goal successfully completed" %}
 | |
|     {% elif progress.percent %}
 | |
|         {% blocktrans with percent=progress.percent %}{{ percent }}% complete!{% endblocktrans %}
 | |
|     {% endif %}
 | |
|     {% if goal.user == request.user %}
 | |
|     {% blocktrans with read_count=progress.count|intcomma goal_count=goal.goal|intcomma path=goal.local_path %}You've read <a href="{{ path }}">{{ read_count }} of {{ goal_count}} books</a>.{% endblocktrans %}
 | |
|     {% else %}
 | |
|     {% blocktrans with username=goal.user.display_name read_count=progress.count|intcomma goal_count=goal.goal|intcomma path=goal.local_path %}{{ username }} has read <a href="{{ path }}">{{ read_count }} of {{ goal_count}} books</a>.{% endblocktrans %}
 | |
|     {% endif %}
 | |
| </p>
 | |
| <progress
 | |
|     class="progress is-large is-primary"
 | |
|     value="{{ progress.count }}"
 | |
|     max="{{ goal.goal }}"
 | |
|     aria-hidden="true"
 | |
| >{{ progress.percent }}%</progress>
 | |
| 
 | |
| {% endwith %}
 |