diff --git a/resources/views/partials/metrics.blade.php b/resources/views/partials/metrics.blade.php
deleted file mode 100644
index e8753243..00000000
--- a/resources/views/partials/metrics.blade.php
+++ /dev/null
@@ -1,139 +0,0 @@
-@if($metrics->count() > 0)
-
- @foreach($metrics as $metric)
- -
-
-
-
- {{ $metric->name }}
- @if($metric->description)
-
- @endif
-
-
-
-
-
-
- @endforeach
-
-
-@endif
diff --git a/resources/views/partials/modules/metrics.blade.php b/resources/views/partials/modules/metrics.blade.php
index 2cff0bc2..85279ce2 100644
--- a/resources/views/partials/modules/metrics.blade.php
+++ b/resources/views/partials/modules/metrics.blade.php
@@ -1,5 +1,143 @@
@if($display_metrics && $app_graphs)
- @include('partials.metrics')
+ @if($metrics->count() > 0)
+
+ @foreach($metrics as $metric)
+ -
+
+
+
+ {{ $metric->name }}
+ @if($metric->description)
+
+ @endif
+
+
+
+
+
+
+ @endforeach
+
+
+ @endif
@endif