diff --git a/training/templates/base_training.html b/training/templates/base_training.html
index f57bf1fa..2f4c13da 100644
--- a/training/templates/base_training.html
+++ b/training/templates/base_training.html
@@ -1 +1,29 @@
-{% extends 'base_rigs.html' %}
+{% extends 'base.html' %}
+
+{% load static %}
+
+{% block titleheader %}
+Training
+{% endblock %}
+
+{% block titleelements %}
+{% if user.is_authenticated %}
+
Home
+
+
+ My Record
+
+
+
+{% endif %}
+{% endblock %}
+
+{% block titleelements_right %}
+{% include 'partials/search.html' %}
+{% include 'partials/navbar_user.html' %}
+{% endblock %}
diff --git a/training/templates/trainee_detail.html b/training/templates/trainee_detail.html
index a54b641c..4cc4968e 100644
--- a/training/templates/trainee_detail.html
+++ b/training/templates/trainee_detail.html
@@ -1,4 +1,4 @@
-{% extends 'base_rigs.html' %}
+{% extends 'base_training.html' %}
{% load static %}
{% load user_has_qualification from tags %}