<div class="wrap {{prefix}}container" data-formname="{{form_name}}">
	<h1 class="title">Include</h1>

	{{#updated}}<div class='updated'><p>Updated!</p></div>{{/updated}}

	<form action="" method="post">

		<table class='form-table'>
			<tbody>
				{{#attributes}}
					<tr>
						<th>
							<label for="{{name}}">{{title}}</label>
						</th>

						<td>

							{{#is_select}}
								<select name="{{form_name}}[{{name}}]" id="{{name}}" style="width:350px;">

									{{#options}}
										<option value="{{option}}" {{#selected}}selected{{/selected}}>{{name}}</option>
									{{/options}}

								</select>
							{{/is_select}}

							{{#is_text}}
								<input type="text" name="{{form_name}}[{{name}}]" id="{{name}}" class="regular-text code" value="{{value}}">
							{{/is_text}}

							{{#is_checkbox}}
								<input type="checkbox" name="{{form_name}}[{{name}}]" {{#checked}}checked{{/checked}} id="{{name}}" value="y">
							{{/is_checkbox}}

							<p class="description">{{tip}}</p>

						</td>
					</tr>
				{{/attributes}}
			</tbody>
		</table>

		<div class="{{prefix}}buttons">
			<input type="submit" class="button button-primary" value="Save">
		</div>

	</form>
</div>