Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

django ejemplo de un formulario crud

<!DOCTYPE html>
<html lang="en">

<head>
    {% load static %}
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>{% block title %} {% endblock %}</title>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
        integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
    <link rel="stylesheet" href="{% static 'css/style.css' %}">
</head>

<body>
    <nav class="navbar navbar-expand-lg navbar-light bg-dark">
        <a class="navbar-brand" href="#" style="color: white">Developers</a>

    </nav>
    <div class="container py-4">
        {% block body %}

        {% endblock %}
    </div>
    <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
        integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous">
    </script>
    <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"
        integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous">
    </script>
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"
        integrity="sha384-w1Q4orYjBQndcko6MimVbzY0tgp4pWB4lZ7lr30WKz0vr/aWKhXdBNmNb5D92v7s" crossorigin="anonymous">
    </script>
    <script src="{% static 'js/bntButton.js' %}"></script>
</body>

</html>
Comment

PREVIOUS NEXT
Code Example
Python :: palindrome rearrange 
Python :: how to get defintiion of pysspark teable 
Python :: NumPy rot90 Example Rotating Twice 
Python :: hide ticks without hiding grid 
Python :: simpy 
Python :: python multiply function with return keyword 
Python :: colorbar over two axes 
Python :: NumPy left_shift Code When inputs and bit shift are an arrays 
Python :: python subprocess redirect a file 
Python :: data base creation 
Python :: # convert dictionary keys to a list 
Python :: python restrict function parameter type 
Python :: selenium send text in p html tag 
Python :: LCS Problem Python 
Python :: knn compute_distances_two_loop 
Python :: pygame borders on window 
Python :: tensorflow 1.x spp implementation 
Python :: how to aggregate and add new column 
Python :: python if corto 
Python :: How to query one to many on same page 
Python :: session timeout flask 
Python :: dataframe missing and zero values 
Python :: random pick and remove index pandas 
Python :: how to enter tavble in sal through sql 
Python :: django bring specific values first 
Python :: size of variable 
Python :: df.write using another delimiter 
Python :: funtools rougly equivalent to, internal 
Python :: ConversionofDatatypes-I 
Python :: removeStopWords 
ADD CONTENT
Topic
Content
Source link
Name
8+1 =