mirror of
https://github.com/Xevion/v1.xevion.dev.git
synced 2025-12-17 20:13:45 -06:00
fixed '/' distinction, added history buttons, modified models
This commit is contained in:
26
app/templates/hidden_history.html
Normal file
26
app/templates/hidden_history.html
Normal file
@@ -0,0 +1,26 @@
|
||||
{% extends 'base.html' %}
|
||||
{% block body %}
|
||||
<!-- Search History Section -->
|
||||
<section class="section section-padding">
|
||||
<div class="container">
|
||||
<div class="columns is-mobile is-multiline is-centered">
|
||||
<div class="column">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<div class="card-header-title">
|
||||
<h1 class="title">Search History</h1>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
{% for post in current_user.search_history %}
|
||||
Post : {{ post }}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Search History Section -->
|
||||
{% endblock body %}
|
||||
Reference in New Issue
Block a user