26 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'components/card.html' %}
 | 
						|
{% load i18n %}
 | 
						|
 | 
						|
{% block card-header %}
 | 
						|
<h3 class="card-header-title has-background-primary has-text-white">
 | 
						|
    <span class="icon icon-book is-size-3 mr-2" aria-hidden="true"></span> {% blocktrans %}{{ year }} Reading Goal{% endblocktrans %}
 | 
						|
</h3>
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
 | 
						|
{% block card-content %}
 | 
						|
<div class="content">
 | 
						|
    <p>{% blocktrans %}Set a goal for how many books you'll finish reading in {{ year }}, and track your progress throughout the year.{% endblocktrans %}</p>
 | 
						|
 | 
						|
    {% include 'snippets/goal_form.html' %}
 | 
						|
</div>
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block card-footer %}
 | 
						|
<form class="card-footer-item is-flex-direction-column" method="post" action="{% url 'hide-goal' %}">
 | 
						|
    {% csrf_token %}
 | 
						|
    <button type="submit" class="button is-danger is-light is-block set-display" >{% trans "Dismiss message" %}</button>
 | 
						|
    <p class="help">{% blocktrans with path=request.user.local_path %}You can set or change your reading goal any time from your <a href="{{ path }}">profile page</a>{% endblocktrans %}</p>
 | 
						|
</form>
 | 
						|
{% endblock %}
 |