Artifact Content
Not logged in

Artifact 98ba13ea1e889397e5855c4026432c40cf6bd3fc

File src/tkt.c part of check-in [a3e4a5d27d] - Add the tkt.c source file as an empty template. by drh on 2007-10-03 12:28:55.

/*
** Copyright (c) 2007 D. Richard Hipp
**
** This program is free software; you can redistribute it and/or
** modify it under the terms of the GNU General Public
** License version 2 as published by the Free Software Foundation.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
** General Public License for more details.
** 
** You should have received a copy of the GNU General Public
** License along with this library; if not, write to the
** Free Software Foundation, Inc., 59 Temple Place - Suite 330,
** Boston, MA  02111-1307, USA.
**
** Author contact information:
**   drh@hwaci.com
**   http://www.hwaci.com/drh/
**
*******************************************************************************
**
** This file contains code used render and control ticket entry
** and display pages.
*/
#include "config.h"
#include "tkt.h"
#include <assert.h>

/*
** PAGE: tktnew
*/
void tktnew_page(void){
  style_header("New Ticket");
  @ This will become a page for entering new tickets.
  style_footer();
}