forked from MarseyWorld/MarseyWorld
fix
parent
b4c18e3813
commit
4bf864f8cf
|
@ -119,7 +119,7 @@
|
|||
'icon': 'fa-search',
|
||||
'title': 'Vote Fraud Analysis',
|
||||
'description': 'Check alt-account voting',
|
||||
'link': '/admin/agendaposters'
|
||||
'link': '/admin/alt_votes'
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
|
@ -5,13 +5,33 @@
|
|||
<meta name="description" content="{{'SITE_NAME' | app_config}} Help">
|
||||
{% endblock %}
|
||||
|
||||
{% block subHeader %}
|
||||
<div class="relative max-w-screen-2xl mx-auto px-4 py-4 grid grid-cols-12 rounded-t">
|
||||
<div class="absolute top-0 left-0 w-full h-full bg-gradient-to-t from-gray-300 to-gray-200 dark:bg-none dark:bg-gray-800 rounded-t sub-header-shadow dark:border-b dark:border-gray-700 sub-header"></div>
|
||||
<div class="relative col-span-full flex items-center">
|
||||
<div>
|
||||
<h1 class="font-bold text-xl font-heading leading-normal mb-0">
|
||||
Vote Analysis
|
||||
</h1>
|
||||
<ul class="flex space-x-2 text-xs text-gray-500 dark:text-gray-400 leading-normal mb-0">
|
||||
<li>
|
||||
<a href="/admin" class="text-gray-500 hover:underline">Admin Dashboard</a>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fas fa-arrow-alt-right text-shadow fa-fw fa-sm"></i>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" class="text-gray-700 dark:text-gray-500 hover:underline">Vote Analysis</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="col-span-full my-4">
|
||||
<pre>
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
<h5>Vote Info</h5>
|
||||
|
||||
<form action="/admin/alt_votes" method="get" class="mb-6">
|
||||
|
@ -23,11 +43,8 @@
|
|||
|
||||
{% if u1 and u2 %}
|
||||
|
||||
|
||||
<h2>Analysis</h2>
|
||||
|
||||
|
||||
|
||||
<table class="w-full table table-striped mb-5">
|
||||
<thead class="bg-primary text-white">
|
||||
<tr>
|
||||
|
|
Loading…
Reference in New Issue