MOre web bs
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{{ self.title() }}</title>
|
||||
<link rel="stylesheet" href="/static/base.css">
|
||||
<link rel="stylesheet" href="/static/css/base.css">
|
||||
{% block headers %}{% endblock %}
|
||||
</head>
|
||||
<body>
|
||||
|
||||
0
templates/clients/add.html
Normal file
0
templates/clients/add.html
Normal file
0
templates/clients/edit.html
Normal file
0
templates/clients/edit.html
Normal file
@@ -1,31 +1,38 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block headers %}
|
||||
<link rel="stylesheet" href="/static/css/clients/index.css">
|
||||
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<table>
|
||||
<tr>
|
||||
<td>First Name</td>
|
||||
<td>Last Name</td>
|
||||
<td>Address</td>
|
||||
<td>Number</td>
|
||||
<td>Email</td>
|
||||
</tr>
|
||||
{% for client in clients %}
|
||||
<tr>
|
||||
<td>{{ client.first_name }}</td>
|
||||
<td>{{ client.last_name }}</td>
|
||||
<td>
|
||||
{{ client.country}}
|
||||
{{ client.city}}
|
||||
{{ client.state}}
|
||||
{{ client.address_line}}
|
||||
{{ client.house_number}}
|
||||
{{ client.postal_code}}
|
||||
</td>
|
||||
<td>{{ client.phone_number }}</td>
|
||||
<td>{{ client.email }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
<table class="table">
|
||||
<thead class="table-header">
|
||||
<tr class="table-row">
|
||||
<td class="table-header-item">First Name</td>
|
||||
<td class="table-header-item">Last Name</td>
|
||||
<td class="table-header-item">Address</td>
|
||||
<td class="table-header-item">Number</td>
|
||||
<td class="table-header-item">Email</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="table-body">
|
||||
{% for client in clients %}
|
||||
<tr class="table-row">
|
||||
<td class="table-cell">{{ client.first_name }}</td>
|
||||
<td class="table-cell">{{ client.last_name }}</td>
|
||||
<td class="table-cell">
|
||||
{{ client.country}}
|
||||
{{ client.city}}
|
||||
{{ client.state}}
|
||||
{{ client.address_line}}
|
||||
{{ client.house_number}}
|
||||
{{ client.postal_code}}
|
||||
</td>
|
||||
<td class="table-cell">{{ client.phone_number }}</td>
|
||||
<td class="table-cell">{{ client.email }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
{% endblock %}
|
||||
|
||||
0
templates/clients/remove.html
Normal file
0
templates/clients/remove.html
Normal file
0
templates/inventory/catalog/add.html
Normal file
0
templates/inventory/catalog/add.html
Normal file
0
templates/inventory/catalog/edit.html
Normal file
0
templates/inventory/catalog/edit.html
Normal file
0
templates/inventory/catalog/remove.html
Normal file
0
templates/inventory/catalog/remove.html
Normal file
@@ -1,7 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block headers %}
|
||||
<link rel="stylesheet" href="/static/login.css">
|
||||
<link rel="stylesheet" href="/static/css/login.css">
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
0
templates/services/add.html
Normal file
0
templates/services/add.html
Normal file
0
templates/services/catalog/add.html
Normal file
0
templates/services/catalog/add.html
Normal file
0
templates/services/catalog/edit.html
Normal file
0
templates/services/catalog/edit.html
Normal file
7
templates/services/catalog/index.html
Normal file
7
templates/services/catalog/index.html
Normal file
@@ -0,0 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
{% block headers %}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
Hewwo wowld!!!!
|
||||
{% endblock %}
|
||||
0
templates/services/catalog/view.html
Normal file
0
templates/services/catalog/view.html
Normal file
7
templates/services/index.html
Normal file
7
templates/services/index.html
Normal file
@@ -0,0 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
{% block headers %}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
Hewwo wowld!!!!
|
||||
{% endblock %}
|
||||
0
templates/services/remove.html
Normal file
0
templates/services/remove.html
Normal file
0
templates/services/view.html
Normal file
0
templates/services/view.html
Normal file
0
templates/tickets/view.html
Normal file
0
templates/tickets/view.html
Normal file
Reference in New Issue
Block a user