diff --git a/progit/templates/edit_tag.html b/progit/templates/edit_tag.html new file mode 100644 index 0000000..b88ef9a --- /dev/null +++ b/progit/templates/edit_tag.html @@ -0,0 +1,28 @@ +{% extends "repo_master.html" %} +{% from "_formhelper.html" import render_field_in_row %} + +{% block title %}Edit tag: {{ tag }} - {{ repo.name }}{% endblock %} +{%block tag %}home{% endblock %} + + +{% block repo %} + +

Edit tag: {{ tag }}

+ +
+
+ +

Enter in the field below the new name for the tag: "{{ tag }}"

+ + {{ render_field_in_row(form.tag) }} +
+

+ + + {{ form.csrf_token }} +

+
+
+ +{% endblock %}