Properly theme and design the Drilldown page

modern-tables
Mark Veidemanis 2 years ago
parent d0ecc92169
commit 7c02e8fe89
Signed by: m
GPG Key ID: 5ACFCEED46C0904F

@ -47,7 +47,6 @@ p {
font-size: 14px;
line-height: 20px;
letter-spacing: -0.154px;
color: #242d60;
height: 100%;
width: 100%;
padding: 0 20px;
@ -123,3 +122,11 @@ h5 {
align-items: left;
justify-content: left;
}
.subtitle {
color: #dddddd;
}
.search-bar {
margin-bottom: 1rem;
}

@ -1,10 +1,12 @@
{% load static %}
<head>
<script src="https://js.stripe.com/v3/"></script>
</head>
<div class="product-container">
<a href="order?product=drilldown">
<div class="product">
<img src="{{ url_for('static', filename='weekly.jpg') }}" alt="Data image"/>
<img src="{% static 'logo.weekly.jpg' %}" alt="Data image"/>
<div class="description">
<h3>Drilldown</h3>
<h5>200.00</h5>
@ -13,7 +15,7 @@
</a>
<a href="order?product=sentiment">
<div class="product">
<img src="{{ url_for('static', filename='weekly.jpg') }}" alt="Data image"/>
<img src="{% static 'logo.weekly.jpg' %}" alt="Data image"/>
<div class="description">
<h3>Sentiment</h3>
<h5>45.00</h5>

@ -3,12 +3,5 @@
{% block content %}
<h1 class="title">Access denied</h1>
<h2 class="subtitle">Sorry, you do not have the necessary permissions to view this page.</h2>
<div class="col">
{% if user.subscription_active %}
{% include 'checkout.html' %}
{% else %}
<h2> Please setup a payment mandate in the profile page to view products </h2>
{% endif %}
</div>
{% endblock %}

@ -4,30 +4,56 @@
<h1 class="title">Welcome to search, {{ user.first_name }}!</h1>
<div class="container">
<div class="row vertical-offset-100">
<div class="col-md-4 col-md-offset-4">
<div class="panel panel-default">
<div class="panel-heading">
{% if query is not None %}
<h3 class="panel-title">Searching for {{ query }}</h3>
{% else %}
<h3 class="panel-title">Search our database</h3>
{% endif %}
<div class="row">
<div class="col-lg-4">
<form method="POST">
{% csrf_token %}
<div class="input-group search-bar">
<input name="query" type="text" class="form-control" placeholder="Search" id="txtSearch"/>
<div class="input-group-btn">
<button class="btn btn-primary" type="submit">
<span class="glyphicon glyphicon-search"></span>
</button>
</div>
</div>
<div class="panel-body">
{% if query is None %}
<form method="POST">
<fieldset>
{% csrf_token %}
<input class="textinput textInput form-control" type="text" name="query">
<input class="btn btn-lg btn-dark btn-block" type="submit" value="Search">
</fieldset>
</form>
{% endif %}
</form>
</div>
</div>
{% if results is not None %}
<div class="row">
<div class="col-lg-12">
<div class="panel panel-default">
<div class="panel-heading">Results</div>
<div class="panel-body">
<p>Searching for {{ query }}</p>
</div>
<table class="table table-bordered table-light">
<thead>
<tr>
<th>TS</th>
<th>msg</th>
<th>host</th>
<th>nick</th>
<th>channel</th>
<th>net</th>
</tr>
</thead>
{% for item in results %}
<tr>
<td>{{ item.ts }}</td>
<td>{{ item.msg }}</td>
<td>{{ item.host }}</td>
<td>{{ item.nick }}</td>
<td>{{ item.channel }}</td>
<td>{{ item.net }}</td>
</tr>
{% endfor %}
</table>
</div>
</div>
</div>
</div>
{% endif %}
</div>
{% endblock %}

@ -9,20 +9,29 @@ client = initialise_opensearch()
class Drilldown(LoginRequiredMixin, View):
template_name = "ui/drilldown.html"
plan_name = "drilldown"
def get(self, request):
if not request.user.has_plan("drilldown"):
if not request.user.has_plan(self.plan_name):
return render(request, "denied.html")
return render(request, self.template_name)
def post(self, request):
if not request.user.has_plan("drilldown"):
print("POST")
if not request.user.has_plan(self.plan_name):
return render(request, "denied.html")
if "query" in request.POST:
query = request.POST["query"]
results = run_main_query(client, query)
print("RESULTS", results)
context = {"query": query}
results_parsed = []
if "hits" in results.keys():
print("hits in results")
if "hits" in results["hits"]:
print("hits in hits")
for item in results["hits"]["hits"]:
print("ITER", item)
results_parsed.append(item["_source"])
context = {"query": query, "results": results_parsed}
print("CONTEXT", context)
return render(request, self.template_name, context)
return render(request, self.template_name)

Loading…
Cancel
Save