From 26a428ef723aaefce54586871e9547ade9e359a9 Mon Sep 17 00:00:00 2001 From: tausq <> Date: Sun, 20 Aug 2000 00:32:46 +0000 Subject: [PATCH] added description field --- machines.cgi | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/machines.cgi b/machines.cgi index 72f729b..e0ee813 100755 --- a/machines.cgi +++ b/machines.cgi @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $Id: machines.cgi,v 1.7 2000/08/19 02:53:56 tausq Exp $ +# $Id: machines.cgi,v 1.8 2000/08/20 02:32:46 tausq Exp $ # (c) 1999 Randolph Chung. Licensed under the GPL. @@ -27,6 +27,7 @@ my (%attrs, @attrorder, %summaryattrs, @summaryorder); 'bandwidth' => 'Bandwidth', 'status' => 'Status', 'notes' => 'Notes', + 'description' => 'Description', 'createtimestamp' => 'Entry created', 'modifytimestamp' => 'Entry modified' ); @@ -34,7 +35,8 @@ my (%attrs, @attrorder, %summaryattrs, @summaryorder); # This defines what fields are displayed, and in what order @attrorder = ('hostname', 'admin', 'architecture', 'distribution', 'access', 'sponsor', 'sponsor-admin', 'location', 'machine', 'memory', - 'disk', 'bandwidth', 'status', 'notes', 'createtimestamp', 'modifytimestamp'); + 'disk', 'bandwidth', 'status', 'notes', 'description', + 'createtimestamp', 'modifytimestamp'); # ditto for summary %summaryattrs = ('hostname' => 'Host name', -- 2.20.1