1
0
mirror of https://github.com/aquatix/digimarks.git synced 2025-12-06 22:05:09 +01:00

Support for notes

This commit is contained in:
2016-08-16 21:24:40 +02:00
parent 7c24057d35
commit d39d793460
3 changed files with 12 additions and 0 deletions

View File

@@ -85,6 +85,9 @@
{% if bookmark.starred == True %}
<i class="small material-icons yellow-text">star</i>
{% endif %}
{% if bookmark.note %}
<br /><i class="small material-icons white-text" title="Bookmark has a note">description</i>
{% endif %}
</div>
<div class="card-stacked">
<div class="card-content white-text">

View File

@@ -55,6 +55,12 @@
<input placeholder="tags, divided by comma's" type="text" name="tags" id="tags" value="{{ bookmark.tags }}" class="validate" />
<label for="tags">Tags</label>
</div>
<div class="input-field col s12">
<i class="material-icons prefix">description</i>
<input placeholder="note" type="text" name="note" id="note" value="{{ bookmark.note }}" class="validate" />
<label for="note">Note</label>
</div>
</div>
{% if tags %}
<div class="row">