The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
	
	<head>
		<title>Pangloss : Editor : Add Concept</title>
		<link rel="stylesheet" href="/pcie.css"/>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
	</head>

	<body bottommargin="0" topmargin="0" leftmargin="0" rightmargin="0" marginheight="0" marginwidth="0">

		<xi:include href="../header.html"/>

<!-- START OF PAGE BODY .............................................. -->
		<table border="0" cellpadding="0" cellspacing="0" width="100%" height="90%">
			<tr><td valign="top" height="19"><span class="vsmall"> </span></td></tr>
			<tr>
				<td valign="top" width="15"><span class="vsmall"> </span></td>
				<td valign="top" petal:if="view">
					<h1>Add New Concept</h1>

					<xi:include href="../concept-error.html"/>

					<form method="post" action="concept.html" petal:if="session/user/can_add_concepts">
						Please enter new concept details below.
						<table>
							<tr>
								<td>Name:</td>
								<td><input type="text" name="new_concept_name"/></td>
							</tr>
							<tr>
								<td>Category:</td>
								<td>
									<select name="new_concept_category" petal:if="$view/categories">
										<option value="" selected="1">none</option>
										<option petal:repeat="category view/categories"
														petal:attributes="value category/key; selected true: equal: $category/key $view/category/key">$category/name</option>
									</select>
								</td>
							</tr>
							<tr>
								<td>Notes:</td>
								<td><input type="text" name="new_concept_notes"/></td>
							</tr>
						</table>
						<input type="submit" name="add_concept" value="add concept"/>
					</form>

					<p petal:if="session/user/cant_add_concepts">
						Sorry, you do not have privileges to add Concepts.
					</p>

				</td>
				<td valign="top" petal:if="false: view">
					<div class="error">Application Error: no view present!</div>
				</td>
				<td valign="top" width="15"><span class="vsmall"> </span></td>
			</tr>
		</table>
<!-- END OF PAGE BODY .............................................. -->

	<xi:include href="../footer.html"/>

  </body>
</html>