12 lines
285 B
HTML
12 lines
285 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}new deployment{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ user.username }}'s new deployment
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
{{ form }}
|
|
<input type="submit" value="create">
|
|
</form>
|
|
{% endblock %} |