From 72ea558c980e47cd057fc29c8b735ddaa4a1aa69 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Feb 13 2015 16:33:27 +0000 Subject: Add forgotten template allowing to edit a Tag in the settings of a project --- 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 %}