updated company logo
This commit is contained in:
@@ -5,51 +5,52 @@
|
|||||||
<html lang="en"">
|
<html lang="en"">
|
||||||
<head>
|
<head>
|
||||||
<title>Contract Detail</title>
|
<title>Contract Detail</title>
|
||||||
<link href="{% static 'financial/css/material-dashboard.css' %}" rel="stylesheet" >
|
<link href=" {% static 'financial/css/material-dashboard.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' %}">
|
||||||
<body class="g-sidenav-show bg-gray-200" >
|
|
||||||
|
<body class="g-sidenav-show bg-gray-200">
|
||||||
|
|
||||||
<main class="main-content position-relative max-height-vh-100 h-100 border-radius-lg">
|
<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 %}
|
{% if is_new %}
|
||||||
<h1> {{ contract.name }}</h1>
|
<h1>New Contract</h1>
|
||||||
<form method="post" action='{% url "contract_detail" contract.slug %}' >
|
<form method="post" action='{% url "new_contract" %}'>
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
{{ form }}
|
{{ form }}
|
||||||
<button type=""button" value="submit">Update</button>
|
<button type="" button" value="submit">Create</button>
|
||||||
</form>
|
</form>
|
||||||
{% endif %}
|
|
||||||
|
{% 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 %}
|
{% if is_new %}
|
||||||
<h2> Charge Numbers</h2>
|
{% else %}
|
||||||
{% if charge_numbes %}
|
<h2> Charge Numbers</h2>
|
||||||
<p> put charge number table here</p>
|
{% if charge_numbes %}
|
||||||
<p> Create a new charge number</p>
|
<p> put charge number table here</p>
|
||||||
{{ charge_number_form }}
|
<p> Create a new charge number</p>
|
||||||
{% else %}
|
|
||||||
<p> There are no charge numbers for this contract</p>
|
|
||||||
<form method="post" action='{% url "new_charge_number" %}' >
|
|
||||||
{% csrf_token %}
|
|
||||||
{{ charge_number_form }}
|
{{ charge_number_form }}
|
||||||
<button type=""button" value="submit">Update</button>
|
{% else %}
|
||||||
</form>
|
<p> There are no charge numbers for this contract</p>
|
||||||
{% endif %}
|
<form method="post" action='{% url "new_charge_number" %}'>
|
||||||
{% endif %}
|
{% csrf_token %}
|
||||||
|
{{ charge_number_form }}
|
||||||
|
<button type="" button" value="submit">Update</button>
|
||||||
|
</form>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
</body>
|
|
||||||
|
</body>
|
||||||
@@ -5,45 +5,46 @@
|
|||||||
<html lang="en"">
|
<html lang="en"">
|
||||||
<head>
|
<head>
|
||||||
<title>Profile</title>
|
<title>Profile</title>
|
||||||
<link href="{% static 'financial/css/material-dashboard.css' %}" rel="stylesheet" >
|
<link href=" {% static 'financial/css/material-dashboard.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' %}">
|
||||||
<body class="g-sidenav-show bg-gray-200" >
|
|
||||||
|
<body class="g-sidenav-show bg-gray-200">
|
||||||
|
|
||||||
<main class="main-content position-relative max-height-vh-100 h-100 border-radius-lg">
|
<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 %}
|
<h1>Contracts</h1>
|
||||||
</body>
|
{% 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"">
|
<html lang="en"">
|
||||||
<head>
|
<head>
|
||||||
<title>Accounting</title>
|
<title>Accounting</title>
|
||||||
<link href="{% static 'financial/css/material-dashboard.css' %}" rel="stylesheet" >
|
<link href=" {% static 'financial/css/material-dashboard.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' %}">
|
||||||
<body class="g-sidenav-show bg-gray-200" >
|
|
||||||
|
<body class="g-sidenav-show bg-gray-200">
|
||||||
<div class="sidenav-header">
|
<div class="sidenav-header">
|
||||||
<ul class="navbar-item">
|
<ul class="navbar-item">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
@@ -18,7 +19,8 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<main class="main-content position-relative max-height-vh-100 h-100 border-radius-lg">
|
<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">
|
<div class="container-fluid py-1 px-3">
|
||||||
<nav aria-label="breadcrumb">
|
<nav aria-label="breadcrumb">
|
||||||
<h6>Dashboard</h6>
|
<h6>Dashboard</h6>
|
||||||
@@ -34,83 +36,83 @@
|
|||||||
Contracts
|
Contracts
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div class="card-body">
|
</div class="card-body">
|
||||||
<p> put picture here</p>
|
<p> put picture here</p>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</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>
|
||||||
</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>
|
</main>
|
||||||
<h1>Accouting</h1>
|
<h1>Accouting</h1>
|
||||||
</body>
|
</body>
|
||||||
@@ -5,13 +5,14 @@
|
|||||||
<html lang="en"">
|
<html lang="en"">
|
||||||
<head>
|
<head>
|
||||||
<title>Profile</title>
|
<title>Profile</title>
|
||||||
<link href="{% static 'financial/css/material-dashboard.css' %}" rel="stylesheet" >
|
<link href=" {% static 'financial/css/material-dashboard.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' %}">
|
||||||
<body class="g-sidenav-show bg-gray-200" >
|
|
||||||
|
<body class="g-sidenav-show bg-gray-200">
|
||||||
|
|
||||||
<main class="main-content position-relative max-height-vh-100 h-100 border-radius-lg">
|
<main class="main-content position-relative max-height-vh-100 h-100 border-radius-lg">
|
||||||
|
|
||||||
|
|
||||||
<h1>Profile</h1>
|
<h1>Profile</h1>
|
||||||
{{ form }}
|
{{ form }}
|
||||||
</body>
|
</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"
|
<meta property="og:description"
|
||||||
content="{% block og_description %}AI ML Operations, LLC provides cutting-edge AI, Machine Learning, and Web Development solutions.{% endblock %}">
|
content="{% block og_description %}AI ML Operations, LLC provides cutting-edge AI, Machine Learning, and Web Development solutions.{% endblock %}">
|
||||||
<meta property="og:image"
|
<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 -->
|
<!-- Twitter -->
|
||||||
<meta property="twitter:card" content="summary_large_image">
|
<meta property="twitter:card" content="summary_large_image">
|
||||||
@@ -25,7 +25,7 @@
|
|||||||
<meta property="twitter:description"
|
<meta property="twitter:description"
|
||||||
content="{% block twitter_description %}AI ML Operations, LLC provides cutting-edge AI, Machine Learning, and Web Development solutions.{% endblock %}">
|
content="{% block twitter_description %}AI ML Operations, LLC provides cutting-edge AI, Machine Learning, and Web Development solutions.{% endblock %}">
|
||||||
<meta property="twitter:image"
|
<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 -->
|
<!-- Fonts -->
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
@@ -34,7 +34,7 @@
|
|||||||
|
|
||||||
<!-- Custom CSS -->
|
<!-- Custom CSS -->
|
||||||
<link href="{% static 'public/css/style.css' %}" rel="stylesheet">
|
<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 %}
|
{% if not debug %}
|
||||||
<script async defer src="https://tianji.aimloperations.com/tracker.js"
|
<script async defer src="https://tianji.aimloperations.com/tracker.js"
|
||||||
|
|||||||
Reference in New Issue
Block a user