You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.2 KiB
33 lines
1.2 KiB
{% extends "Base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<main class="container my-5">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-6 col-md-8 col-sm-12">
|
|
<form action="/inventariomov/crear/" method="POST" class="shadow-lg p-4 bg-light rounded">
|
|
{% csrf_token %}
|
|
<h3 class="text-center text-secondary mb-4">Registrar nuevo movimiento de inventario</h3>
|
|
<div class="mb-3">
|
|
{{ form.as_p }}
|
|
</div>
|
|
<div class="d-flex justify-content-between align-items-center mt-4">
|
|
<a href="{% url 'vista_inventario_mov' %}" class="btn btn-outline-danger">
|
|
<i class="bi bi-x-circle"></i> Cancelar
|
|
</a>
|
|
<button type="submit" class="btn btn-primary">
|
|
<i class="bi bi-save"></i> Crear nuevo movimiento de inventario
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<script>
|
|
function permitirSoloNumeros(input) {
|
|
input.value = input.value.replace(/[^0-9]/g, '');
|
|
}
|
|
</script>
|
|
|
|
{% endblock %} |