From e43eb135483c45435c9d4a50d6dff744fb7aef85 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Fri, 26 Jan 2007 18:56:24 +0000 Subject: [PATCH] - added 'enabled' to Site.fields --- PLC/Sites.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PLC/Sites.py b/PLC/Sites.py index 479c0fb..c0dd170 100644 --- a/PLC/Sites.py +++ b/PLC/Sites.py @@ -28,7 +28,8 @@ class Site(Row): 'abbreviated_name': Parameter(str, "Abbreviated site name", max = 50), 'login_base': Parameter(str, "Site slice prefix", max = 20), 'is_public': Parameter(bool, "Publicly viewable site"), - 'latitude': Parameter(float, "Decimal latitude of the site", min = -90.0, max = 90.0, nullok = True), + 'enabled': Parameter(bool, "Has been enabled"), + 'latitude': Parameter(float, "Decimal latitude of the site", min = -90.0, max = 90.0, nullok = True), 'longitude': Parameter(float, "Decimal longitude of the site", min = -180.0, max = 180.0, nullok = True), 'url': Parameter(str, "URL of a page that describes the site", max = 254, nullok = True), 'date_created': Parameter(int, "Date and time when site entry was created, in seconds since UNIX epoch", ro = True), -- 2.43.0