Improve chat experience and begin search implementation
This commit is contained in:
27
core/templates/pages/osint-search.html
Normal file
27
core/templates/pages/osint-search.html
Normal file
@@ -0,0 +1,27 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<div class="columns is-centered">
|
||||
<div class="column is-11-tablet is-10-desktop is-9-widescreen">
|
||||
<div class="is-flex is-justify-content-space-between is-align-items-center">
|
||||
<div>
|
||||
<h1 class="title is-4">Search</h1>
|
||||
<p class="subtitle is-6">
|
||||
Search across OSINT objects with sortable, paginated results.
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<button
|
||||
class="button is-light"
|
||||
hx-get="{{ search_widget_url }}"
|
||||
hx-target="#widgets-here"
|
||||
hx-swap="beforeend"
|
||||
onclick="document.getElementById('widgets-here').style.display = 'block';">
|
||||
Open Widget
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
{% include "partials/osint/search-panel.html" %}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user