From c8500d0c00ea11ee47b78d616cb8773ad2121967 Mon Sep 17 00:00:00 2001
From: Magnus Hagander
Date: Tue, 27 Jan 2009 14:48:32 +0100
Subject: [PATCH] Show a "form saved at" message when save is clicked, to make
it clear something happened. Per Heikki.
---
gitadmin/adm/templates/repoview.html | 3 +++
gitadmin/adm/views.py | 18 ++++++++++++------
2 files changed, 15 insertions(+), 6 deletions(-)
diff --git a/gitadmin/adm/templates/repoview.html b/gitadmin/adm/templates/repoview.html
index f6af412..02753e0 100644
--- a/gitadmin/adm/templates/repoview.html
+++ b/gitadmin/adm/templates/repoview.html
@@ -7,6 +7,9 @@
You can still update the description and set permissions - they will all start working automatically
when the repository is approved.
{%endif%}
+{% if form_saved_at %}
+Your changes were successfully saved at {{form_saved_at|date:"Y-m-d H:i:s"}}.
+{%endif%}