Add some help text to bulletin edit page

This commit is contained in:
Yingtong Li 2019-02-08 20:52:33 +11:00
parent 4e418f5ad1
commit cd8900070a
Signed by: RunasSudo
GPG Key ID: 7234E476BF21C61A
1 changed files with 9 additions and 3 deletions

View File

@ -38,11 +38,11 @@
</div>
<div class="ui required inline grid field">
<label class="three wide column">Date</label>
<div class="ten wide column">
<div class="eleven wide column">
<div class="ui calendar" id="cal_date">
<div class="ui input left icon grid">
<i class="calendar icon" style="z-index: 999;"></i>
<input class="twelve wide column" type="text" name="date" value="{{ item.date or '' }}">
<input class="sixteen wide column" type="text" name="date" value="{{ item.date or '' }}">
</div>
</div>
<div style="margin-top: 1.5em;">Choose the date to publish the bulletin item (must be a Sunday).</div>
@ -60,7 +60,12 @@
<div class="ui divider"></div>
<div class="ui required inline grid field">
<label class="three wide column">Content</label>
<textarea class="eleven wide column" rows="6" name="content">{{ item.content }}</textarea>
<div class="eleven wide column">
<div class="ui grid">
<textarea class="sixteen wide column" rows="6" name="content">{{ item.content }}</textarea>
<div style="margin-top: 0.5em;">To add formatting, use <a href="https://www.markdownguide.org/basic-syntax">Markdown</a> syntax. Quick reference: **<b>bold</b>** *<i>italic</i>* [<a href="http://example.com">link text</a>](http://example.com)</div>
</div>
</div>
</div>
<div class="ui inline grid field">
<label class="three wide column">Link</label>
@ -82,6 +87,7 @@
</div>
</div>
{% endfor %}
<div style="margin-top: 0.5em;">Using this option, you can limit the bulletin item to members who are also in one or more of the selected groups.</div>
</div>
</div>
<div class="ui divider"></div>