21 lines
491 B
HTML
21 lines
491 B
HTML
{% extends "expenses/base.html" %}
|
|
{% block title %}
|
|
Nuevo objetivo
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>
|
|
Nuevo objetivo
|
|
</h1>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<div class="form-actions">
|
|
<button type="submit" class="btn btn-primary">
|
|
Guardar
|
|
</button>
|
|
<a class="btn btn-secondary" href="{% url 'goal_list' %}">Volver</a>
|
|
</div>
|
|
</form>
|
|
{% endblock %} |