diff --git a/prediction_service/templates/prediction_service/home-AI.html b/prediction_service/templates/prediction_service/home-AI.html
index bd040344d32f871288dcf0d8caa8f8ff521afb44..9ec7e5f5df70e4d966963f6cd5fa3fd73063eabd 100644
--- a/prediction_service/templates/prediction_service/home-AI.html
+++ b/prediction_service/templates/prediction_service/home-AI.html
@@ -11,7 +11,7 @@
             {% for post in posts %}
                 <div class="card" style="width: 18rem; margin-right: 15px;">
                     <div class="card-body">
-                        <h5 class="card-title">{{post.title}} ID: {{post.mlmodel.id}}</h5>
+                        <h5 class="card-title">{{post.title}}</h5>
                         <h6 class="card-subtitle mb-2 text-muted">By {{ post.author }} on {{ post.date_posted }}</h6>
                         <p class="card-text">{{ post.content }}</p>
                         <a href="/mlmodel/{{post.mlmodel.id}}" class="card-link">Ml-Model</a>
diff --git a/prediction_service/templates/prediction_service/home-Admin.html b/prediction_service/templates/prediction_service/home-Admin.html
index eb2112f69f34a174819f2129c1d688ba5a329943..eaacaf5fec20fa87040b89a6171644426b08e7e3 100644
--- a/prediction_service/templates/prediction_service/home-Admin.html
+++ b/prediction_service/templates/prediction_service/home-Admin.html
@@ -11,7 +11,7 @@
             {% for post in posts %}
                 <div class="card" style="width: 18rem; margin-right: 15px; margin-bottom: 20px;">
                     <div class="card-body">
-                        <h5 class="card-title">{{post.title}} ID: {{post.mlmodel.id}}</h5>
+                        <h5 class="card-title">{{post.title}}</h5>
                         <h6 class="card-subtitle mb-2 text-muted">By {{ post.author }} on {{ post.date_posted }}</h6>
                         <p class="card-text">{{ post.content }}</p>
                         <a href="/mlmodel/{{post.mlmodel.id}}" class="card-link">Ml-Model</a>
diff --git a/prediction_service/templates/prediction_service/home.html b/prediction_service/templates/prediction_service/home.html
index a39871b482afbe73986565384f5f9d253782b231..df9ab13c56024ac59b2f9a3cc7b4b1b4a4d3bb72 100644
--- a/prediction_service/templates/prediction_service/home.html
+++ b/prediction_service/templates/prediction_service/home.html
@@ -11,7 +11,7 @@
             {% for post in posts %}
                 <div class="card" style="width: 18rem; margin-right: 15px;">
                     <div class="card-body">
-                        <h5 class="card-title">{{post.title}} ID: {{post.mlmodel.id}}</h5>
+                        <h5 class="card-title">{{post.title}}</h5>
                         <h6 class="card-subtitle mb-2 text-muted">By {{ post.author }} on {{ post.date_posted }}</h6>
                         <p class="card-text">{{ post.content }}</p>
                         <a href="/mlmodel/{{post.mlmodel.id}}" class="card-link">Ml-Model</a>