mirror of
https://github.com/Superredstone/patrickcanal.it.git
synced 2026-09-20 17:51:12 +02:00
22 lines
735 B
HTML
22 lines
735 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
{% block content %}
|
|
<div class="container mt-4">
|
|
<form class="mb-4">
|
|
<div class="form-floating">
|
|
<input type="text"
|
|
class="form-control"
|
|
id="floating-name"
|
|
placeholder=""
|
|
name="query"
|
|
autocomplete="off"
|
|
hx-target="#projects"
|
|
hx-get="{% url 'projects-query' %}"
|
|
hx-trigger="load, input, delay:200ms" />
|
|
<label for="floating-name">{% trans "Search" %}</label>
|
|
</div>
|
|
</form>
|
|
<div id="projects"></div>
|
|
</div>
|
|
{% endblock %}
|