brutaldon-interfaccia-web-m.../brutaldon/templates/main/fav.html

32 lines
975 B
HTML

{% extends "base.html" %}
{% block title %} Brutaldon - confirm favorite {% endblock %}
{% block content %}
{% if toot.favourited %}
<h1 class="title">Unfav that toot?</h1>
{% else %}
<h1 class="title" >Fav that toot?</h1>
{% endif %}
<div class="box">
{% include "main/toot_partial.html" with toot=toot %}
</div>
<form method="POST" action="{% url "fav" toot.id %}">
{% csrf_token %}
<div class="level is-mobile">
<div class="level-left">
<div class="level-item">
<input class="button" type="submit" name="cancel" value="Cancel">
</div>
</div>
<div class="level-right">
<div class="level-item">
<input class="button is-primary" type="submit" name="fav"
value="Favorite">
</div>
</div>
</div>
</form>
{% endblock %}