helper.html 1.37 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
{% extends "base.html" %}
{% load static %}

{% block additionnal_css %}
<link rel="stylesheet" href="{% static 'css/datatables/jquery.dataTables.css' %}">
<link rel="stylesheet" href="{% static 'jquery-ui-1.12.1/jquery-ui.min.css' %}">
<link rel="stylesheet" href="{% static 'css/oders_helper_style.css' %}">
{% endblock %}

{% block additionnal_scripts %}
<script type="text/javascript" src="{% static 'jquery-ui-1.12.1/jquery-ui.min.js' %}?v="></script>
<script type="text/javascript" src="{% static 'js/datatables/jquery.dataTables.min.js' %}"></script>
{% endblock %}

{% block content %}
<div class="page_body">
    <div class="header txtcenter">
        <h1>Aide à la commande</h1>
    </div>

    <div class="txtcenter" id="form_container">
        <form action="javascript:;" id="supplier_form">
            <input type="text" name="supplier" id="supplier_input" placeholder="Rechercher un fournisseur par son nom">
            <button type="submit" class='btn--primary'>Ajouter le fournisseur</button>
        </form>
    </div>

    <div class="main" style="display:none;">
        <div class="table_area">
            <table id="products_table" class="display" cellspacing="0" width="100%"></table>
        </div>
    </div>
</div>

<script src="{% static "js/all_common.js" %}?v="></script>
<script type="text/javascript" src="{% static 'js/orders_helper.js' %}?v="></script>
{% endblock %}