diff options
author | Mario <mario@mariovavti.com> | 2021-02-19 10:11:24 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-02-19 10:11:24 +0000 |
commit | a2d170385b3c02ad284535ec337acda237e2e353 (patch) | |
tree | bf8e8ccd91811541c9b49250cf6352b4836d8f7a /view/tpl/jot.tpl | |
parent | a27572698888649f662e7465ad338cf9b6e9fcc2 (diff) | |
download | volse-hubzilla-a2d170385b3c02ad284535ec337acda237e2e353.tar.gz volse-hubzilla-a2d170385b3c02ad284535ec337acda237e2e353.tar.bz2 volse-hubzilla-a2d170385b3c02ad284535ec337acda237e2e353.zip |
deprecate summary tag in favour of a separate input field
Diffstat (limited to 'view/tpl/jot.tpl')
-rw-r--r-- | view/tpl/jot.tpl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index 36e71223c..1454f038b 100644 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -36,12 +36,15 @@ <div id="jot-title-wrap" class="jothidden"> <input class="w-100 border-0" name="title" id="jot-title" type="text" placeholder="{{$placeholdertitle}}" tabindex="1" value="{{$title}}"> </div> + <div id="jot-summary-wrap" class="jothidden"> + <input class="w-100 border-0" name="summary" id="jot-summary" type="text" placeholder="{{$placeholdersummary}}" tabindex="2" value="{{$summary}}"> + </div> {{if $catsenabled}} <div id="jot-category-wrap" class="jothidden"> <input class="w-100 border-0" name="category" id="jot-category" type="text" placeholder="{{$placeholdercategory}}" value="{{$category}}" data-role="cat-tagsinput"> </div> {{/if}} - {{if $customjotheaders}} + {{if $customjotheaders}} <div id="jot-customjotheaders-wrap" class="jothidden"> {{$customjotheaders}} </div> |