|
Revision 5, 1.0 kB
(checked in by DanWilson, 17 years ago)
|
|
Initial Commit Of ModelGlue? Website (upgrade to blogcfc 511)
|
| Line | |
|---|
| 1 | <cfsetting enablecfoutputonly=true> |
|---|
| 2 | <!--- |
|---|
| 3 | Name : conferences.cfm |
|---|
| 4 | Author : Raymond Camden |
|---|
| 5 | Created : June 01, 2004 |
|---|
| 6 | Last Updated : September 9, 2005 |
|---|
| 7 | History : Removed mappings (rkc 8/27/05) |
|---|
| 8 | Changed cols (rkc 9/9/05) |
|---|
| 9 | Purpose : |
|---|
| 10 | ---> |
|---|
| 11 | |
|---|
| 12 | <cfmodule template="../tags/layout.cfm" templatename="admin" title="Conference Editor"> |
|---|
| 13 | |
|---|
| 14 | <!--- handle deletions ---> |
|---|
| 15 | <cfif isDefined("form.mark") and len(form.mark)> |
|---|
| 16 | <cfloop index="id" list="#form.mark#"> |
|---|
| 17 | <cfset application.galleon.conference.deleteConference(id)> |
|---|
| 18 | </cfloop> |
|---|
| 19 | <cfoutput> |
|---|
| 20 | <p> |
|---|
| 21 | <b>Conference(s) deleted.</b> |
|---|
| 22 | </p> |
|---|
| 23 | </cfoutput> |
|---|
| 24 | </cfif> |
|---|
| 25 | |
|---|
| 26 | <!--- get conferences ---> |
|---|
| 27 | <cfset conferences = application.galleon.conference.getConferences(false)> |
|---|
| 28 | |
|---|
| 29 | <cfmodule template="../tags/datatable.cfm" |
|---|
| 30 | data="#conferences#" list="name,description,lastpost,messagecount,active" |
|---|
| 31 | editlink="conferences_edit.cfm" linkcol="name" label="Conference" /> |
|---|
| 32 | |
|---|
| 33 | |
|---|
| 34 | </cfmodule> |
|---|
| 35 | |
|---|
| 36 | <cfsetting enablecfoutputonly=false> |
|---|