Revert "Move card footer container inside the card-footer component"

This reverts commit 58aeb72afa.
This commit is contained in:
Joachim
2021-04-21 21:48:31 +02:00
parent 17436b6657
commit 53b47aa264
3 changed files with 27 additions and 29 deletions

View File

@ -17,11 +17,9 @@
{% endblock %}
{% block card-footer %}
<footer class="card-footer has-background-white-bis">
<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>
</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 %}