updated company logo
This commit is contained in:
@@ -5,51 +5,52 @@
|
||||
<html lang="en"">
|
||||
<head>
|
||||
<title>Contract Detail</title>
|
||||
<link href="{% static 'financial/css/material-dashboard.css' %}" rel="stylesheet" >
|
||||
<link rel="icon" type="image/xicon" href="{% static 'public/img/logo.png' %}">
|
||||
<body class="g-sidenav-show bg-gray-200" >
|
||||
|
||||
<link href=" {% static 'financial/css/material-dashboard.css' %}" rel="stylesheet">
|
||||
<link rel="icon" type="image/xicon" href="{% static 'public/img/favicon.jpg' %}">
|
||||
|
||||
<body class="g-sidenav-show bg-gray-200">
|
||||
|
||||
<main class="main-content position-relative max-height-vh-100 h-100 border-radius-lg">
|
||||
|
||||
{% if is_new %}
|
||||
<h1>New Contract</h1>
|
||||
<form method="post" action='{% url "new_contract" %}' >
|
||||
{% csrf_token %}
|
||||
{{ form }}
|
||||
<button type=""button" value="submit">Create</button>
|
||||
</form>
|
||||
|
||||
{% else %}
|
||||
<h1> {{ contract.name }}</h1>
|
||||
<form method="post" action='{% url "contract_detail" contract.slug %}' >
|
||||
{% csrf_token %}
|
||||
{{ form }}
|
||||
<button type=""button" value="submit">Update</button>
|
||||
</form>
|
||||
{% endif %}
|
||||
|
||||
{% if is_new %}
|
||||
<h1>New Contract</h1>
|
||||
<form method="post" action='{% url "new_contract" %}'>
|
||||
{% csrf_token %}
|
||||
{{ form }}
|
||||
<button type="" button" value="submit">Create</button>
|
||||
</form>
|
||||
|
||||
{% else %}
|
||||
<h1> {{ contract.name }}</h1>
|
||||
<form method="post" action='{% url "contract_detail" contract.slug %}'>
|
||||
{% csrf_token %}
|
||||
{{ form }}
|
||||
<button type="" button" value="submit">Update</button>
|
||||
</form>
|
||||
{% endif %}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{% if is_new %}
|
||||
{% else %}
|
||||
<h2> Charge Numbers</h2>
|
||||
{% if charge_numbes %}
|
||||
<p> put charge number table here</p>
|
||||
<p> Create a new charge number</p>
|
||||
{{ charge_number_form }}
|
||||
{% else %}
|
||||
<p> There are no charge numbers for this contract</p>
|
||||
<form method="post" action='{% url "new_charge_number" %}' >
|
||||
{% csrf_token %}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{% if is_new %}
|
||||
{% else %}
|
||||
<h2> Charge Numbers</h2>
|
||||
{% if charge_numbes %}
|
||||
<p> put charge number table here</p>
|
||||
<p> Create a new charge number</p>
|
||||
{{ charge_number_form }}
|
||||
<button type=""button" value="submit">Update</button>
|
||||
</form>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
{% else %}
|
||||
<p> There are no charge numbers for this contract</p>
|
||||
<form method="post" action='{% url "new_charge_number" %}'>
|
||||
{% csrf_token %}
|
||||
{{ charge_number_form }}
|
||||
<button type="" button" value="submit">Update</button>
|
||||
</form>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
</body>
|
||||
|
||||
</body>
|
||||
@@ -5,45 +5,46 @@
|
||||
<html lang="en"">
|
||||
<head>
|
||||
<title>Profile</title>
|
||||
<link href="{% static 'financial/css/material-dashboard.css' %}" rel="stylesheet" >
|
||||
<link rel="icon" type="image/xicon" href="{% static 'public/img/logo.png' %}">
|
||||
<body class="g-sidenav-show bg-gray-200" >
|
||||
|
||||
<link href=" {% static 'financial/css/material-dashboard.css' %}" rel="stylesheet">
|
||||
<link rel="icon" type="image/xicon" href="{% static 'public/img/favicon.jpg' %}">
|
||||
|
||||
<body class="g-sidenav-show bg-gray-200">
|
||||
|
||||
<main class="main-content position-relative max-height-vh-100 h-100 border-radius-lg">
|
||||
|
||||
|
||||
<h1>Contracts</h1>
|
||||
{% if contracts %}
|
||||
<table>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Identifier</th>
|
||||
<th>Type</th>
|
||||
<th>Start Date</th>
|
||||
<th>End Date</th>
|
||||
<th>Proposed Amount</th>
|
||||
<th>Baseline Amount</th>
|
||||
<th>Funded Amount</th>
|
||||
</tr>
|
||||
|
||||
{% for contract in contracts %}
|
||||
<tr>
|
||||
<td> <a href="{% url 'contract_detail' contract.slug %}">{{ contract.name }}</a></td>
|
||||
<td> {{ contract.slug }}</td>
|
||||
<td> {{ contract.contract_type }}</td>
|
||||
<td> {{ contract.baseline_start }}</td>
|
||||
<td> {{ contract.baseline_end }}</td>
|
||||
<td> {{ contract.proposed_amount }}</td>
|
||||
<td> {{ contract.baseline_amount }}</td>
|
||||
<td> {{ contract.funded_amount }}</td>
|
||||
</tr>
|
||||
|
||||
{% endfor %}
|
||||
</table>
|
||||
<hr>
|
||||
<p> Create <a href="{% url 'new_contract' %}">new</a> contract.</p>
|
||||
{% else %}
|
||||
<p> There are no contracts. <a href="{% url 'new_contract' %}">Please make one</a></p>
|
||||
|
||||
{% endif %}
|
||||
</body>
|
||||
<h1>Contracts</h1>
|
||||
{% if contracts %}
|
||||
<table>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Identifier</th>
|
||||
<th>Type</th>
|
||||
<th>Start Date</th>
|
||||
<th>End Date</th>
|
||||
<th>Proposed Amount</th>
|
||||
<th>Baseline Amount</th>
|
||||
<th>Funded Amount</th>
|
||||
</tr>
|
||||
|
||||
{% for contract in contracts %}
|
||||
<tr>
|
||||
<td> <a href="{% url 'contract_detail' contract.slug %}">{{ contract.name }}</a></td>
|
||||
<td> {{ contract.slug }}</td>
|
||||
<td> {{ contract.contract_type }}</td>
|
||||
<td> {{ contract.baseline_start }}</td>
|
||||
<td> {{ contract.baseline_end }}</td>
|
||||
<td> {{ contract.proposed_amount }}</td>
|
||||
<td> {{ contract.baseline_amount }}</td>
|
||||
<td> {{ contract.funded_amount }}</td>
|
||||
</tr>
|
||||
|
||||
{% endfor %}
|
||||
</table>
|
||||
<hr>
|
||||
<p> Create <a href="{% url 'new_contract' %}">new</a> contract.</p>
|
||||
{% else %}
|
||||
<p> There are no contracts. <a href="{% url 'new_contract' %}">Please make one</a></p>
|
||||
|
||||
{% endif %}
|
||||
</body>
|
||||
@@ -3,9 +3,10 @@
|
||||
<html lang="en"">
|
||||
<head>
|
||||
<title>Accounting</title>
|
||||
<link href="{% static 'financial/css/material-dashboard.css' %}" rel="stylesheet" >
|
||||
<link rel="icon" type="image/xicon" href="{% static 'public/img/logo.png' %}">
|
||||
<body class="g-sidenav-show bg-gray-200" >
|
||||
<link href=" {% static 'financial/css/material-dashboard.css' %}" rel="stylesheet">
|
||||
<link rel="icon" type="image/xicon" href="{% static 'public/img/favicon.jpg' %}">
|
||||
|
||||
<body class="g-sidenav-show bg-gray-200">
|
||||
<div class="sidenav-header">
|
||||
<ul class="navbar-item">
|
||||
<li class="nav-item">
|
||||
@@ -18,7 +19,8 @@
|
||||
</ul>
|
||||
</div>
|
||||
<main class="main-content position-relative max-height-vh-100 h-100 border-radius-lg">
|
||||
<nav class="navbar navbar-main navbar-expand-lg px-0 mx-4 shadow-none border-radius-xl" id="navbarBlur" data-scroll="true">
|
||||
<nav class="navbar navbar-main navbar-expand-lg px-0 mx-4 shadow-none border-radius-xl" id="navbarBlur"
|
||||
data-scroll="true">
|
||||
<div class="container-fluid py-1 px-3">
|
||||
<nav aria-label="breadcrumb">
|
||||
<h6>Dashboard</h6>
|
||||
@@ -34,83 +36,83 @@
|
||||
Contracts
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div class="card-body">
|
||||
<p> put picture here</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div class="card-body">
|
||||
<p> put picture here</p>
|
||||
</div>
|
||||
{% if is_worker %}
|
||||
<div class="col-xl-3 col-sm-4 mb-xl-o mb-4">
|
||||
<div class="card">
|
||||
<div class="card-header p-3 pt-2">
|
||||
<a href="{% url 'profile' %}">
|
||||
Profile
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div class="card-body">
|
||||
<p> put picture here</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if is_worker %}
|
||||
<div class="col-xl-3 col-sm-4 mb-xl-o mb-4">
|
||||
<div class="card">
|
||||
<div class="card-header p-3 pt-2">
|
||||
<a href="{% url 'Timekeeping' %}">
|
||||
Timekeeping
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div class="card-body">
|
||||
<p> put picture here</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if is_manager %}
|
||||
<div class="col-xl-3 col-sm-4 mb-xl-o mb-4">
|
||||
<div class="card">
|
||||
<div class="card-header p-3 pt-2">
|
||||
<a href="{% url 'Timeapproval' %}">
|
||||
Time Approval
|
||||
</a>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<p> put picture here</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if is_procurment_officer %}
|
||||
<div class="col-xl-3 col-sm-4 mb-xl-o mb-4">
|
||||
<div class="card">
|
||||
<div class="card-header p-3 pt-2">
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<p> put picture here</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if is_finance %}
|
||||
<div class="col-xl-3 col-sm-4 mb-xl-o mb-4">
|
||||
<div class="card">
|
||||
<div class="card-header p-3 pt-2">
|
||||
<a href="{% url 'contracts' %}">
|
||||
Contracts
|
||||
</a>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<p> put picture here</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
{% if is_worker %}
|
||||
<div class="col-xl-3 col-sm-4 mb-xl-o mb-4">
|
||||
<div class="card">
|
||||
<div class="card-header p-3 pt-2">
|
||||
<a href="{% url 'profile' %}">
|
||||
Profile
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div class="card-body">
|
||||
<p> put picture here</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if is_worker %}
|
||||
<div class="col-xl-3 col-sm-4 mb-xl-o mb-4">
|
||||
<div class="card">
|
||||
<div class="card-header p-3 pt-2">
|
||||
<a href="{% url 'Timekeeping' %}">
|
||||
Timekeeping
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div class="card-body">
|
||||
<p> put picture here</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if is_manager %}
|
||||
<div class="col-xl-3 col-sm-4 mb-xl-o mb-4">
|
||||
<div class="card">
|
||||
<div class="card-header p-3 pt-2">
|
||||
<a href="{% url 'Timeapproval' %}">
|
||||
Time Approval
|
||||
</a>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<p> put picture here</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if is_procurment_officer %}
|
||||
<div class="col-xl-3 col-sm-4 mb-xl-o mb-4">
|
||||
<div class="card">
|
||||
<div class="card-header p-3 pt-2">
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<p> put picture here</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if is_finance %}
|
||||
<div class="col-xl-3 col-sm-4 mb-xl-o mb-4">
|
||||
<div class="card">
|
||||
<div class="card-header p-3 pt-2">
|
||||
<a href="{% url 'contracts' %}">
|
||||
Contracts
|
||||
</a>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<p> put picture here</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<h1>Accouting</h1>
|
||||
</body>
|
||||
@@ -5,13 +5,14 @@
|
||||
<html lang="en"">
|
||||
<head>
|
||||
<title>Profile</title>
|
||||
<link href="{% static 'financial/css/material-dashboard.css' %}" rel="stylesheet" >
|
||||
<link rel="icon" type="image/xicon" href="{% static 'public/img/logo.png' %}">
|
||||
<body class="g-sidenav-show bg-gray-200" >
|
||||
|
||||
<link href=" {% static 'financial/css/material-dashboard.css' %}" rel="stylesheet">
|
||||
<link rel="icon" type="image/xicon" href="{% static 'public/img/favicon.jpg' %}">
|
||||
|
||||
<body class="g-sidenav-show bg-gray-200">
|
||||
|
||||
<main class="main-content position-relative max-height-vh-100 h-100 border-radius-lg">
|
||||
|
||||
|
||||
<h1>Profile</h1>
|
||||
{{ form }}
|
||||
|
||||
|
||||
<h1>Profile</h1>
|
||||
{{ form }}
|
||||
</body>
|
||||
BIN
company_site/public/static/public/img/favicon.jpg
Normal file
BIN
company_site/public/static/public/img/favicon.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 130 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 18 KiB |
@@ -16,7 +16,7 @@
|
||||
<meta property="og:description"
|
||||
content="{% block og_description %}AI ML Operations, LLC provides cutting-edge AI, Machine Learning, and Web Development solutions.{% endblock %}">
|
||||
<meta property="og:image"
|
||||
content="{% block og_image %}{{ request.scheme }}://{{ request.get_host }}{% static 'public/img/logo.png' %}{% endblock %}">
|
||||
content="{% block og_image %}{{ request.scheme }}://{{ request.get_host }}{% static 'public/img/favicon.jpg' %}{% endblock %}">
|
||||
|
||||
<!-- Twitter -->
|
||||
<meta property="twitter:card" content="summary_large_image">
|
||||
@@ -25,7 +25,7 @@
|
||||
<meta property="twitter:description"
|
||||
content="{% block twitter_description %}AI ML Operations, LLC provides cutting-edge AI, Machine Learning, and Web Development solutions.{% endblock %}">
|
||||
<meta property="twitter:image"
|
||||
content="{% block twitter_image %}{{ request.scheme }}://{{ request.get_host }}{% static 'public/img/logo.png' %}{% endblock %}">
|
||||
content="{% block twitter_image %}{{ request.scheme }}://{{ request.get_host }}{% static 'public/img/favicon.jpg' %}{% endblock %}">
|
||||
|
||||
<!-- Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
@@ -34,7 +34,7 @@
|
||||
|
||||
<!-- Custom CSS -->
|
||||
<link href="{% static 'public/css/style.css' %}" rel="stylesheet">
|
||||
<link rel="icon" type="image/xicon" href="{% static 'public/img/logo.png' %}">
|
||||
<link rel="icon" type="image/xicon" href="{% static 'public/img/favicon.jpg' %}">
|
||||
|
||||
{% if not debug %}
|
||||
<script async defer src="https://tianji.aimloperations.com/tracker.js"
|
||||
|
||||
Reference in New Issue
Block a user