From e3633a3cf4c3dd5c74d9165024575be229a3fc2d Mon Sep 17 00:00:00 2001 From: jacob Date: Mon, 5 Oct 2009 22:01:06 +0000 Subject: [PATCH] Started on writing form viewing log files on the "Activity Log" tab --- admin/donors.php | 87 +++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 78 insertions(+), 9 deletions(-) diff --git a/admin/donors.php b/admin/donors.php index 5d1cdd75..3078a05c 100644 --- a/admin/donors.php +++ b/admin/donors.php @@ -22,11 +22,11 @@ */ ?> 'committee_main.php', 'Administration' => 'admin/index.php', 'Fundraising' => 'admin/fundraising.php') @@ -237,7 +247,7 @@ function draw_contactsinfo_form($contact = null){ } -// draw a form in which to enter contact info +// draw a form in which to enter information about the various contacts function draw_contact_form($sponsor_id, $contact = null){ if($contact != null){ $id = $contact["id"]; @@ -305,6 +315,59 @@ function draw_contact_form($sponsor_id, $contact = null){ +
+ + + + + + + + +"; + $results = mysql_query($query); + $row = mysql_fetch_array($results); + if($row){ + do{ + echo "\n"; + }while($row = mysql_fetch_array($results)); + }else{ + echo ""; + } +?> + + + + + +
DateUserNotes
" . $query . "
" . $results["dt"]; + echo "
" . $results["name"]; + echo "" . $results["log"]; + echo "
" . i18n("No records") . "
" onClick="return activityinfo_save()" />
+
+