diff --git a/env_example b/env_example
index 3a7e2ce9b5e79929ddc977e2434dfd2c4f695613..c451ac103fcf238870109a87508451cd03a3ff66 100644
--- a/env_example
+++ b/env_example
@@ -1 +1,2 @@
-TOSCAIE_SECRET='super_secret_key'
\ No newline at end of file
+TOSCAIE_SECRET='super_secret_key'
+LAST_COMMIT='something'
\ No newline at end of file
diff --git a/relaunch.sh b/relaunch.sh
index 8f1efc5d5894f91116d576e2f8678a10d31ce98d..aeb943fb78b73bec0f280ccbe371590908a20666 100755
--- a/relaunch.sh
+++ b/relaunch.sh
@@ -15,6 +15,8 @@ if [ "$1" == "stop" ] ; then
     exit 0
 fi 
 
+sed -i -E "s/(LAST_COMMIT=').+(')/\1$(git log -n 1 --oneline)'/" env
+
 docker build -t tosca-ie-sample:latest .
 
 docker run -d --restart unless-stopped -t -p 5000:5000 --env-file ./env tosca-ie-sample
diff --git a/src/config.py b/src/config.py
index 8dc47a17b6b494ad2424076e55333b32238b9d06..75593c3a261096eb548b16d12ab6909417c86048 100644
--- a/src/config.py
+++ b/src/config.py
@@ -17,3 +17,6 @@ VERSION = "0.0.5"
 
 SECRET = env_or_false("TOSCAIE_SECRET") or 'super_secret_key'
 
+LAST_COMMIT = env_or_false("LAST_COMMIT")
+
+REPO_URL = "https://labs.etsi.org/rep/cti-tools/tosca2doc/tree/"
\ No newline at end of file
diff --git a/src/templates/home.html b/src/templates/home.html
index 36a61674614763f16a8fa94207820967305b5c44..6f92c127f7a8f5a5e103ce6c9335bcdc5c2015c6 100644
--- a/src/templates/home.html
+++ b/src/templates/home.html
@@ -26,12 +26,17 @@
 <center>
 <h1>TOSCA import/export</h1>
 <h5 style="margin-bottom: 50px">v {{ VERSION }}</h5>
+
 <p>
 The tools available on this page are provided with NO GUARANTEES and shall be used ONLY for validation of ETSI Specifications. 
 <br/>
 <br/>
 To report bugs, questions or feature request, please use the <a href="https://forge.etsi.org/bugzilla/enter_bug.cgi?product=Forge">the issue tracker at ETSI Forge</a> and select "TOSCA tools" as component. 
 <br/>
+{% if last_rev %}
+		Current revision is <a href="{{rev_link}}">{{last_rev}}</a>
+{% endif %}
+<br/>
 For any other inquiry, contact <a href="mailto:cti_support@etsi.org">ETSI CTI</a></p>
 </center>
 <div class="row">
diff --git a/src/web_app.py b/src/web_app.py
index 53d69357a3c17644dc165dfe496c475169a5ede8..d787300980086806f474e9bdbde2f40ff3f0945d 100644
--- a/src/web_app.py
+++ b/src/web_app.py
@@ -69,11 +69,18 @@ def hello():
     '''
     Render home page
     '''
+    if config.LAST_COMMIT is not False:
+        link = config.REPO_URL+config.LAST_COMMIT.split(" ")[0]
+    else:
+        link = "#"
+
     return render_template(
         "./home.html", 
         VERSION=config.VERSION, 
         doc_allowed_versions=doc2tosca.allowed_versions,
-        default_tosca_version=doc2tosca.DEFAULT_TOSCA_VERSION
+        default_tosca_version=doc2tosca.DEFAULT_TOSCA_VERSION,
+        last_rev=config.LAST_COMMIT,
+        rev_link=link
     )
 
 @app.route("/doc2tosca-info")