21 lines
391 B
HTML
21 lines
391 B
HTML
{% extends "expenses/base.html" %}
|
|
|
|
{% block title %}
|
|
Nuevo repostaje
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>
|
|
Nuevo repostaje
|
|
</h1>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit">
|
|
Crear repostaje
|
|
</button>
|
|
</form>
|
|
|
|
<a href="{% url 'fuel_list' %}">Volver</a>
|
|
{% endblock %} |