diff --git a/tailbone/views/tempmon/clients.py b/tailbone/views/tempmon/clients.py index 620bbdd8..b9ced7fb 100644 --- a/tailbone/views/tempmon/clients.py +++ b/tailbone/views/tempmon/clients.py @@ -65,6 +65,7 @@ class TempmonClientView(MasterView): """ model_class = tempmon.Client model_title = "TempMon Client" + model_title_plural = "TempMon Clients" route_prefix = 'tempmon.clients' url_prefix = '/tempmon/clients' diff --git a/tailbone/views/tempmon/probes.py b/tailbone/views/tempmon/probes.py index bf2ede82..2ec781d7 100644 --- a/tailbone/views/tempmon/probes.py +++ b/tailbone/views/tempmon/probes.py @@ -51,6 +51,7 @@ class TempmonProbeView(MasterView): """ model_class = tempmon.Probe model_title = "TempMon Probe" + model_title_plural = "TempMon Probes" route_prefix = 'tempmon.probes' url_prefix = '/tempmon/probes' diff --git a/tailbone/views/tempmon/readings.py b/tailbone/views/tempmon/readings.py index db3f5600..66c2738b 100644 --- a/tailbone/views/tempmon/readings.py +++ b/tailbone/views/tempmon/readings.py @@ -37,6 +37,7 @@ class TempmonReadingView(MasterView): """ model_class = tempmon.Reading model_title = "TempMon Reading" + model_title_plural = "TempMon Readings" route_prefix = 'tempmon.readings' url_prefix = '/tempmon/readings' creatable = False