Reformat templates
This commit is contained in:
parent
185bda02ea
commit
423d363f9f
|
@ -35,6 +35,9 @@
|
|||
|
||||
});
|
||||
</script>
|
||||
<style>
|
||||
.icon { border-bottom: 0px !important;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
|
@ -35,9 +35,6 @@
|
|||
});
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
.icon { border-bottom: 0px !important;}
|
||||
</style>
|
||||
<div class="box">
|
||||
<form method="POST">
|
||||
{% csrf_token %}
|
||||
|
@ -77,7 +74,12 @@
|
|||
|
||||
<div class="field">
|
||||
<div class="control">
|
||||
<button class="button is-primary is-fullwidth" hx-post="{% url 'search_drilldown' %}" hx-trigger="click" hx-target="#results" hx-swap="outerHTML">
|
||||
<button
|
||||
class="button is-primary is-fullwidth"
|
||||
hx-post="{% url 'search_drilldown' %}"
|
||||
hx-trigger="click"
|
||||
hx-target="#results"
|
||||
hx-swap="outerHTML">
|
||||
Search
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
@ -58,7 +58,12 @@
|
|||
</div>
|
||||
<div class="field">
|
||||
<div class="control">
|
||||
<button class="button is-primary is-fullwidth" hx-post="{% url 'search_insights' %}" hx-trigger="click" hx-target="#results" hx-swap="outerHTML">
|
||||
<button
|
||||
class="button is-primary is-fullwidth"
|
||||
hx-post="{% url 'search_insights' %}"
|
||||
hx-trigger="click"
|
||||
hx-target="#results"
|
||||
hx-swap="outerHTML">
|
||||
Search
|
||||
</button>
|
||||
</div>
|
||||
|
@ -67,14 +72,15 @@
|
|||
</div>
|
||||
|
||||
<div id="results">
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="tile is-parent">
|
||||
<div class="tile is-child box">
|
||||
<p> 2</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
|
@ -1,11 +1,13 @@
|
|||
{% load static %}
|
||||
{% load index %}
|
||||
|
||||
<div class="tile is-child box">
|
||||
<div id="results">
|
||||
|
||||
<div id="results">
|
||||
<div class="tile is-child box">
|
||||
{% if item is not None %}
|
||||
<div class="table-container">
|
||||
<table class="table is-hoverable is-fullwidth">
|
||||
<table class="table is-fullwidth">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>src</th>
|
||||
<td>
|
||||
|
@ -13,10 +15,12 @@
|
|||
<span class="icon" data-tooltip="IRC">
|
||||
<i class="fa-solid fa-hashtag" aria-hidden="true"></i>
|
||||
</span>
|
||||
IRC
|
||||
{% elif item|index:'src' == 'dis' %}
|
||||
<span class="icon" data-tooltip="Discord">
|
||||
<i class="fa-brands fa-discord" aria-hidden="true"></i>
|
||||
</span>
|
||||
Discord
|
||||
{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -71,7 +75,7 @@
|
|||
<th>net</th>
|
||||
<td>{{ item.net }}</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in New Issue