Skip to content

Instantly share code, notes, and snippets.

@sawatsky
Last active March 14, 2018 05:42
Show Gist options
  • Save sawatsky/7926efe66c22088b399dce4121c240ca to your computer and use it in GitHub Desktop.
Save sawatsky/7926efe66c22088b399dce4121c240ca to your computer and use it in GitHub Desktop.
Pages to view lists of all resources
<!DOCTYPE html>
<title>Clients - TruckIt</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="author" content="Heather Sawatsky"/>
<meta name="application-name" content="TruckIt"/>
<meta name="keywords" content=""/>
<meta name="description" content=""/>
<link rel="stylesheet" href="https://gistpreview.github.io/?7926efe66c22088b399dce4121c240ca/list.css"/>
<link rel="stylesheet" href="list.css"/>
<div>
<header>
<h2>Clients</h2>
</header>
<table>
<tr>
<th>Name</th>
<th>Credit</th>
<th>Payments</th>
<th>Actions</th>
</tr>
<tr>
<td>John Smith</td>
<td>$134.32</td>
<td>4</td>
<td>Edit | Delete</td>
</tr>
<tr>
<td>Jane Doe</td>
<td>$123123.23</td>
<td>17</td>
<td>Edit | Delete</td>
</tr>
<tr>
<td>Gordon Ramsey</td>
<td>$1234.32</td>
<td>2</td>
<td>Edit | Delete</td>
</tr>
<tr>
<td>Taylor Moore</td>
<td>$87676.01</td>
<td>15</td>
<td>Edit | Delete</td>
</tr>
</table>
<a href="https://gistpreview.github.io/?2eac6bc2a028f885681b1d1fc1d1f37b/client.html">Create New</a>
</div>
<!DOCTYPE html>
<title>Drivers - TruckIt</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="author" content="Heather Sawatsky"/>
<meta name="application-name" content="TruckIt"/>
<meta name="keywords" content=""/>
<meta name="description" content=""/>
<link rel="stylesheet" href="https://gistpreview.github.io/?7926efe66c22088b399dce4121c240ca/list.css"/>
<link rel="stylesheet" href="list.css"/>
<div>
<header>
<h2>Drivers</h2>
</header>
<table>
<tr>
<th>Name</th>
<th>Phone</th>
<th>Trucks</th>
<th>Trailers</th>
<th>Actions</th>
</tr>
<tr>
<td>John Smith</td>
<td>345-355-3455</td>
<td>Type A</td>
<td>Long one</td>
<td>Edit | Delete</td>
</tr>
<tr>
<td>Jane Doe</td>
<td>345-355-3455</td>
<td>Type A<br/>Type B</td>
<td>Long one</td>
<td>Edit | Delete</td>
</tr>
<tr>
<td>Gordon Ramsey</td>
<td>345-355-3455</td>
<td>Type A</td>
<td>Long one</td>
<td>Edit | Delete</td>
</tr>
<tr>
<td>Taylor Moore</td>
<td>345-355-3455</td>
<td>Type A</td>
<td>Long one<br/>Short one</td>
<td>Edit | Delete</td>
</tr>
</table>
<a href="https://gistpreview.github.io/?2eac6bc2a028f885681b1d1fc1d1f37b/driver.html">Create New</a>
</div>
td {
padding: 0.5rem 1rem;
}
<!DOCTYPE html>
<title>Trailers - TruckIt</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="author" content="Heather Sawatsky"/>
<meta name="application-name" content="TruckIt"/>
<meta name="keywords" content=""/>
<meta name="description" content=""/>
<link rel="stylesheet" href="https://gistpreview.github.io/?7926efe66c22088b399dce4121c240ca/list.css"/>
<link rel="stylesheet" href="list.css"/>
<div>
<header>
<h2>Trailers</h2>
</header>
<table>
<tr>
<th>Rented or Owned</th>
<th>Axle Count</th>
<th>Actions</th>
</tr>
<tr>
<td>Owned</td>
<td>6</td>
<td>Edit | Delete</td>
</tr>
<tr>
<td>Owned</td>
<td>12</td>
<td>Edit | Delete</td>
</tr>
<tr>
<td>Rented</td>
<td>4</td>
<td>Edit | Delete</td>
</tr>
<tr>
<td>Owned</td>
<td>8</td>
<td>Edit | Delete</td>
</tr>
</table>
<a href="https://gistpreview.github.io/?2eac6bc2a028f885681b1d1fc1d1f37b/trailer.html">Create New</a>
</div>
<!DOCTYPE html>
<title>Trips - TruckIt</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="author" content="Heather Sawatsky"/>
<meta name="application-name" content="TruckIt"/>
<meta name="keywords" content=""/>
<meta name="description" content=""/>
<link rel="stylesheet" href="https://gistpreview.github.io/?7926efe66c22088b399dce4121c240ca/list.css"/>
<link rel="stylesheet" href="list.css"/>
<div>
<header>
<h2>Trips</h2>
</header>
<table>
<tr>
<th>Client</th>
<th>Customer</th>
<th>Pickup Date</th>
<th>Drop off points</th>
<th>Driver</th>
<th>Actions</th>
</tr>
<tr>
<td>LA Fitness</td>
<td>Walmart</td>
<td>March 7, 2017</td>
<td>3</td>
<td>John Smith</td>
<td>Edit | Delete</td>
</tr>
<tr>
<td>SalesForce</td>
<td>Concur</td>
<td>March 17, 2017</td>
<td>1</td>
<td>John Smith</td>
<td>Edit | Delete</td>
</tr>
<tr>
<td>RiteAid</td>
<td>Safeway</td>
<td>March 27, 2017</td>
<td>4</td>
<td>Gordon Ramsey</td>
<td>Edit | Delete</td>
</tr>
<tr>
<td>NoName</td>
<td>Fred Meyer's</td>
<td>April 7, 2017</td>
<td>1</td>
<td>Jane Doe</td>
<td>Edit | Delete</td>
</tr>
</table>
<a href="https://gistpreview.github.io/?2eac6bc2a028f885681b1d1fc1d1f37b/trip.html">Create New</a>
</div>
<!DOCTYPE html>
<title>Trucks - TruckIt</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="author" content="Heather Sawatsky"/>
<meta name="application-name" content="TruckIt"/>
<meta name="keywords" content=""/>
<meta name="description" content=""/>
<link rel="stylesheet" href="https://gistpreview.github.io/?7926efe66c22088b399dce4121c240ca/list.css"/>
<link rel="stylesheet" href="list.css"/>
<div>
<header>
<h2>Trucks</h2>
</header>
<table>
<tr>
<th>Type</th>
<th>Mileage</th>
<th>Actions</th>
</tr>
<tr>
<td>Type A</td>
<td>5134</td>
<td>Edit | Delete</td>
</tr>
<tr>
<td>Type B</td>
<td>123412</td>
<td>Edit | Delete</td>
</tr>
<tr>
<td>Type C</td>
<td>234123</td>
<td>Edit | Delete</td>
</tr>
<tr>
<td>Type B</td>
<td>12342</td>
<td>Edit | Delete</td>
</tr>
</table>
<a href="https://gistpreview.github.io/?2eac6bc2a028f885681b1d1fc1d1f37b/truck.html">Create New</a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment