mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-25 04:53:43 +00:00
167 lines
7.6 KiB
HTML
167 lines
7.6 KiB
HTML
{% extends "layouts/base.html" %}
|
|
{% block title %}Product Add {% endblock %}
|
|
<!-- Element injected in the BODY element -->
|
|
{% block body_class %}
|
|
sidebar-mini
|
|
{% endblock body_class %}
|
|
<!-- Specific Page CSS goes HERE -->
|
|
{% block stylesheets %}
|
|
<!-- Google Font: Source Sans Pro -->
|
|
<link rel="stylesheet"
|
|
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet" href="/static/assets/plugins/fontawesome-free/css/all.min.css">
|
|
<!-- Theme style -->
|
|
<link rel="stylesheet" href="/static/assets/css/adminlte.min.css">
|
|
{% endblock stylesheets %}
|
|
{% block content %}
|
|
<!-- Content Wrapper. Contains page content -->
|
|
<div class="content-wrapper">
|
|
<!-- Content Header (Page header) -->
|
|
<section class="content-header">
|
|
<div class="container-fluid">
|
|
<div class="row mb-2">
|
|
<div class="col-sm-6">
|
|
<h1>Project Add</h1>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<ol class="breadcrumb float-sm-right">
|
|
<li class="breadcrumb-item">
|
|
<a href="#">Home</a>
|
|
</li>
|
|
<li class="breadcrumb-item active">
|
|
Project Add
|
|
</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- /.container-fluid -->
|
|
</section>
|
|
<!-- Main content -->
|
|
<section class="content">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="card card-primary">
|
|
<div class="card-header">
|
|
<h3 class="card-title">General</h3>
|
|
<div class="card-tools">
|
|
<button type="button"
|
|
class="btn btn-tool"
|
|
data-card-widget="collapse"
|
|
title="Collapse">
|
|
<i class="fas fa-minus"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="form-group">
|
|
<label for="inputName">
|
|
Project Name
|
|
</label>
|
|
<input type="text" id="inputName" class="form-control">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="inputDescription">
|
|
Project Description
|
|
</label>
|
|
<textarea id="inputDescription" class="form-control" rows="4"></textarea>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="inputStatus">
|
|
Status
|
|
</label>
|
|
<select id="inputStatus" class="form-control custom-select">
|
|
<option selected disabled>
|
|
Select one
|
|
</option>
|
|
<option>
|
|
On Hold
|
|
</option>
|
|
<option>
|
|
Canceled
|
|
</option>
|
|
<option>
|
|
Success
|
|
</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="inputClientCompany">
|
|
Client Company
|
|
</label>
|
|
<input type="text" id="inputClientCompany" class="form-control">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="inputProjectLeader">
|
|
Project Leader
|
|
</label>
|
|
<input type="text" id="inputProjectLeader" class="form-control">
|
|
</div>
|
|
</div>
|
|
<!-- /.card-body -->
|
|
</div>
|
|
<!-- /.card -->
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="card card-secondary">
|
|
<div class="card-header">
|
|
<h3 class="card-title">Budget</h3>
|
|
<div class="card-tools">
|
|
<button type="button"
|
|
class="btn btn-tool"
|
|
data-card-widget="collapse"
|
|
title="Collapse">
|
|
<i class="fas fa-minus"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="form-group">
|
|
<label for="inputEstimatedBudget">
|
|
Estimated budget
|
|
</label>
|
|
<input type="number" id="inputEstimatedBudget" class="form-control">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="inputSpentBudget">
|
|
Total amount spent
|
|
</label>
|
|
<input type="number" id="inputSpentBudget" class="form-control">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="inputEstimatedDuration">
|
|
Estimated project duration
|
|
</label>
|
|
<input type="number" id="inputEstimatedDuration" class="form-control">
|
|
</div>
|
|
</div>
|
|
<!-- /.card-body -->
|
|
</div>
|
|
<!-- /.card -->
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<a href="#" class="btn btn-secondary">
|
|
Cancel
|
|
</a>
|
|
<input type="submit" value="Create new Porject" class="btn btn-success float-right">
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- /.content -->
|
|
</div>
|
|
<!-- /.content-wrapper -->
|
|
{% endblock content %}
|
|
<!-- Specific Page JS goes HERE -->
|
|
{% block javascripts %}
|
|
<!-- jQuery -->
|
|
<script src="/static/assets/plugins/jquery/jquery.min.js"></script>
|
|
<!-- Bootstrap 4 -->
|
|
<script src="/static/assets/plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
<!-- AdminLTE App -->
|
|
<script src="/static/assets/js/adminlte.min.js"></script>
|
|
<!-- AdminLTE for demo purposes -->
|
|
<script src="/static/assets/js/demo.js"></script>
|
|
{% endblock javascripts %}
|