mirror of
https://gitlab.com/brutaldon/brutaldon
synced 2025-06-05 21:49:32 +02:00
Remove more boxes.
This commit is contained in:
@ -9,9 +9,7 @@
|
|||||||
<h1 class="title" >Boost that toot?</h1>
|
<h1 class="title" >Boost that toot?</h1>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<div class="box">
|
|
||||||
{% include "main/toot_partial.html" with toot=toot %}
|
{% include "main/toot_partial.html" with toot=toot %}
|
||||||
</div>
|
|
||||||
<form method="POST" action="{% url "boost" toot.id %}">
|
<form method="POST" action="{% url "boost" toot.id %}">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
<div class="level is-mobile">
|
<div class="level is-mobile">
|
||||||
|
@ -5,9 +5,7 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
<h1 class="title">Delete that toot?</h1>
|
<h1 class="title">Delete that toot?</h1>
|
||||||
|
|
||||||
<div class="box">
|
|
||||||
{% include "main/toot_partial.html" with toot=toot %}
|
{% include "main/toot_partial.html" with toot=toot %}
|
||||||
</div>
|
|
||||||
<form method="POST" action="{% url "delete" toot.id %}">
|
<form method="POST" action="{% url "delete" toot.id %}">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
<div class="level is-mobile">
|
<div class="level is-mobile">
|
||||||
|
@ -9,9 +9,7 @@
|
|||||||
<h1 class="title" >Fav that toot?</h1>
|
<h1 class="title" >Fav that toot?</h1>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<div class="box">
|
|
||||||
{% include "main/toot_partial.html" with toot=toot %}
|
{% include "main/toot_partial.html" with toot=toot %}
|
||||||
</div>
|
|
||||||
<form method="POST" action="{% url "fav" toot.id %}">
|
<form method="POST" action="{% url "fav" toot.id %}">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
<div class="level is-mobile">
|
<div class="level is-mobile">
|
||||||
|
@ -8,14 +8,10 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
<h1 class="title">Thread</h1>
|
<h1 class="title">Thread</h1>
|
||||||
{% for ancestor in context.ancestors %}
|
{% for ancestor in context.ancestors %}
|
||||||
<div class="box">
|
|
||||||
{% include "main/toot_partial.html" with toot=ancestor %}
|
{% include "main/toot_partial.html" with toot=ancestor %}
|
||||||
</div>
|
|
||||||
<hr class="is-hidden">
|
<hr class="is-hidden">
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<div class="box active_context">
|
{% include "main/toot_partial.html" with toot=toot active=True %}
|
||||||
{% include "main/toot_partial.html" with toot=toot %}
|
|
||||||
</div>
|
|
||||||
<hr class="is-hidden">
|
<hr class="is-hidden">
|
||||||
<div class="box">
|
<div class="box">
|
||||||
{% include "main/post_partial.html" %}
|
{% include "main/post_partial.html" %}
|
||||||
|
Reference in New Issue
Block a user