diff options
author | redmatrix <git@macgirvin.com> | 2016-02-07 15:38:54 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-02-07 15:38:54 -0800 |
commit | 62e7fa6a2326def16760a952f9c8ba180e911424 (patch) | |
tree | aba0909c501fb12bc718428896effe1990ccc282 | |
parent | 021584d782c5bfafaa5ffe26d0c5850c8fffdd8f (diff) | |
download | volse-hubzilla-62e7fa6a2326def16760a952f9c8ba180e911424.tar.gz volse-hubzilla-62e7fa6a2326def16760a952f9c8ba180e911424.tar.bz2 volse-hubzilla-62e7fa6a2326def16760a952f9c8ba180e911424.zip |
update UI template for 'mood' module
-rw-r--r-- | version.inc | 2 | ||||
-rwxr-xr-x | view/tpl/mood_content.tpl | 25 |
2 files changed, 19 insertions, 8 deletions
diff --git a/version.inc b/version.inc index d5a47f11b..edcf6442a 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2016-02-05.1300H +2016-02-07.1302H diff --git a/view/tpl/mood_content.tpl b/view/tpl/mood_content.tpl index 63eaa2d8d..4059620ce 100755 --- a/view/tpl/mood_content.tpl +++ b/view/tpl/mood_content.tpl @@ -1,6 +1,15 @@ -<h3>{{$title}}</h3> -<div id="mood-desc">{{$desc}}</div> +<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 /> @@ -8,11 +17,13 @@ <input id="mood-parent" type="hidden" value="{{$parent}}" name="parent" /> -<select name="verb" id="mood-verb-select" > -{{foreach $verbs as $v}} -<option value="{{$v.0}}">{{$v.1}}</option> -{{/foreach}} -</select> +<div class="form-group 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}}" /> |