Reformat templates

This commit is contained in:
Mark Veidemanis 2022-07-21 13:51:59 +01:00
parent 185bda02ea
commit 423d363f9f
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
4 changed files with 91 additions and 76 deletions

View File

@ -35,6 +35,9 @@
}); });
</script> </script>
<style>
.icon { border-bottom: 0px !important;}
</style>
</head> </head>
<body> <body>

View File

@ -35,9 +35,6 @@
}); });
} }
</script> </script>
<style>
.icon { border-bottom: 0px !important;}
</style>
<div class="box"> <div class="box">
<form method="POST"> <form method="POST">
{% csrf_token %} {% csrf_token %}
@ -77,7 +74,12 @@
<div class="field"> <div class="field">
<div class="control"> <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 Search
</button> </button>
</div> </div>

View File

@ -58,7 +58,12 @@
</div> </div>
<div class="field"> <div class="field">
<div class="control"> <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 Search
</button> </button>
</div> </div>
@ -67,14 +72,15 @@
</div> </div>
<div id="results"> <div id="results">
</div> </div>
</div> </div>
<div class="tile is-parent"> <div class="tile is-parent">
<div class="tile is-child box">
<p> 2</p> <p> 2</p>
</div> </div>
</div>
</div> </div>

View File

@ -1,11 +1,13 @@
{% load static %} {% load static %}
{% load index %} {% 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 %} {% if item is not None %}
<div class="table-container"> <div class="table-container">
<table class="table is-hoverable is-fullwidth"> <table class="table is-fullwidth">
<tbody>
<tr> <tr>
<th>src</th> <th>src</th>
<td> <td>
@ -13,10 +15,12 @@
<span class="icon" data-tooltip="IRC"> <span class="icon" data-tooltip="IRC">
<i class="fa-solid fa-hashtag" aria-hidden="true"></i> <i class="fa-solid fa-hashtag" aria-hidden="true"></i>
</span> </span>
IRC
{% elif item|index:'src' == 'dis' %} {% elif item|index:'src' == 'dis' %}
<span class="icon" data-tooltip="Discord"> <span class="icon" data-tooltip="Discord">
<i class="fa-brands fa-discord" aria-hidden="true"></i> <i class="fa-brands fa-discord" aria-hidden="true"></i>
</span> </span>
Discord
{% endif %} {% endif %}
</td> </td>
</tr> </tr>
@ -71,7 +75,7 @@
<th>net</th> <th>net</th>
<td>{{ item.net }}</td> <td>{{ item.net }}</td>
</tr> </tr>
</tbody>
</table> </table>
</div> </div>
{% endif %} {% endif %}