diff --git a/app/templates/admin/activities.html b/app/templates/admin/activities.html
index a8f86d4b..c0e09b30 100644
--- a/app/templates/admin/activities.html
+++ b/app/templates/admin/activities.html
@@ -38,7 +38,13 @@
{{ activity.result }} |
{% endif %}
{{ activity.exception_message if activity.exception_message else '' }} |
- View |
+
+ {% if activity.activity_json is none %}
+ None
+ {% else %}
+ View
+ {% endif %}
+ |
{% endfor %}
@@ -56,4 +62,4 @@
-{% endblock %}
\ No newline at end of file
+{% endblock %}