WhisperMaPhone/thoughts/templates/thoughts/search/search.html

49 lines
1.6 KiB
HTML
Raw Normal View History

{% extends "thoughts/page.html" %}
2021-10-21 14:00:25 +00:00
{% block title %}Search{% if query %} "{{ query }}"{% endif %}{% endblock %}
2021-10-22 04:59:14 +00:00
{% block navigation %}
<a class="text" href="/">Thoughts</a>
<a class="text" href="/about">About</a>{% if authenticated %}
<a class="text" href="/post">Post</a>{% endif %}
<h1 class="text" aria-current="page">Search</h1>
{% endblock %}
2021-10-21 14:00:25 +00:00
{% block main %}
<form method="get" action="search">
{{ form.q }}
2021-10-21 14:00:25 +00:00
<input type="submit" id="post-button" value="{% if editing %}Update{% else %}Submit{% endif %}">
</form>
{% if query %}
{% load tz %}
2021-10-21 14:00:25 +00:00
{% for thought in page.object_list %}
<div class="thought" id="{{ thought.uuid }}">
<div class="main">
<span class="main-text text">{{ thought.object.text|urlize }}</span>
<a href="/?show={{thought.object.uuid}}" class="button show-more">Show</a>
</div>
<div class="thought-end">
<span class="timestamp">
{% timezone thought.object.get_timezone %}
{{ thought.object.posted|time:"g:i a" }}
{{ thought.object.posted|date:"M d, Y" }},
UTC{{ thought.object.get_offset_hours }}
{{ thought.object.get_season }}
{% endtimezone %}
</span>
</div>
2021-10-21 14:00:25 +00:00
<hr>
</div>
{% empty %}
<p>No results found.</p>
{% endfor %}
{% endif %}
2021-10-21 14:00:25 +00:00
{% endblock %}