aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/mood_content.tpl
blob: 4cb5207f6a4ceb1edea98e2515a36abbcedf57d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<div id="mood-content" class="generic-content-wrapper">
    <div class="section-title-wrapper">
    <h2>{{$title}}</h2>
    </div>
    <div class="section-content-wrapper">

	    <div id="mood-desc">{{$desc}}</div>

		<br />
		<br />


		<form action="mood" method="get">
		<br />
		<br />

		<input id="mood-parent" type="hidden" value="{{$parent}}" name="parent" />

		<div class="mb-3 field custom">
			<select name="verb" id="mood-verb-select" class="form-control" >
			{{foreach $verbs as $v}}
				<option value="{{$v.0}}">{{$v.1}}</option>
			{{/foreach}}
			</select>
		</div>
		<br />
		<br />

		<input type="submit" name="submit" value="{{$submit}}" />
		</form>
	</div>
</div>