turn search into include, limit user results, minimum term search 2, show date of address addition

This commit is contained in:
dsc 2022-03-12 22:06:22 +02:00
parent 37208b102b
commit b13f03855d
10 changed files with 50 additions and 48 deletions

View file

@ -9,7 +9,7 @@
<a href="{{ url_for('bp_routes.login') }}">Login</a>
{% else %}
<a href="{{ url_for('bp_routes.logout') }}">Logout</a>
<a href="{{ url_for('bp_routes.dashboard') }}">Dashboard</a>
<a href="{{ url_for('bp_routes.dashboard') }}">My Profile</a>
{% endif %}
<a href="{{ url_for('bp_routes.search') }}">Yell<span>WOW</span>Page search</a>
<a href="{{ url_for('bp_routes.about') }}">About</a>

View file

@ -0,0 +1,3 @@
<form action="{{ url_for('bp_routes.search') }}" method="GET">
<input type="text" name="username" placeholder="Search for an username...">
</form>

View file

@ -0,0 +1,11 @@
<div id="addresses">
{% for user in users %}
<article>
<header>
<em>{{user.username}}</em>
<small style="float: right">Added: {{ user.created_dt }}</small>
</header>
<kbd>{{user.address}}</kbd>
</article>
{% endfor %}
</div>