aboutsummaryrefslogtreecommitdiff
path: root/interface/views/citizens.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'interface/views/citizens.ejs')
-rw-r--r--interface/views/citizens.ejs21
1 files changed, 8 insertions, 13 deletions
diff --git a/interface/views/citizens.ejs b/interface/views/citizens.ejs
index 0e703b2..2244713 100644
--- a/interface/views/citizens.ejs
+++ b/interface/views/citizens.ejs
@@ -2,6 +2,14 @@
<html lang="en">
<head>
<%- include('partials/head') %>
+ <style>
+ .ui.menu {
+ margin: 0;
+ }
+ .ui.table {
+ margin: 0;
+ }
+ </style>
</head>
<body>
@@ -13,7 +21,6 @@
style="border: none; box-shadow: none"
>
<form class="ui form" method="post" onsubmit="editCitizen(event)">
-
<div class="field">
<label>Address</label>
<input
@@ -54,18 +61,13 @@
<table class="ui selectable table">
<thead>
<tr>
- <!-- <th>Citizen ID</th> -->
<th>First Name</th>
- <!-- <th>Middle Name</th> -->
<th>Last Name</th>
<th>Address</th>
<th>Mobile Number</th>
<th>Date of Birth</th>
<th>Gender</th>
<th>Marital Status</th>
- <!-- <th>Disabled</th>
- <th>Disabled Percentage</th> -->
- <!-- <th>Caste</th> -->
<th>Village Name</th>
<th></th>
</tr>
@@ -73,20 +75,13 @@
<tbody>
<% for(var i=0; i < citizens.length; i++) { %>
<tr>
- <!-- <td><%= citizens[i].citizen_id %></td> -->
<td><%= citizens[i].first_name %></td>
- <!-- <td>
- <%= citizens[i].middle_name ? citizens[i].middle_name : '-' %>
- </td> -->
<td><%= citizens[i].last_name %></td>
<td><%= citizens[i].address %></td>
<td><%= citizens[i].mobile_num %></td>
<td><%= citizens[i].dob %></td>
<td><%= citizens[i].gender %></td>
<td><%= citizens[i].marital_status %></td>
- <!-- <td><%= citizens[i].disabled %></td> -->
- <!-- <td><%= citizens[i].disbaled_percentage %></td> -->
- <!-- <td><%= citizens[i].caste %></td> -->
<td><%= citizens[i].village_name %></td>
<td>
<div class="ui teal buttons">