Merge branch 'master' into dev/multiple-notes
This commit is contained in:
13
Views/Note/Index.cshtml
Normal file
13
Views/Note/Index.cshtml
Normal file
@ -0,0 +1,13 @@
|
||||
@model ContentModel
|
||||
|
||||
<textarea id="content" name="content" spellcheck="false">@Model.Text</textarea>
|
||||
|
||||
<div class="note-names">
|
||||
@foreach (var note in Model.NoteNames)
|
||||
{
|
||||
<a href="@note">@note</a>
|
||||
}
|
||||
</div>
|
||||
|
||||
<div class="toast" id="saved-indicator">Saved</div>
|
||||
<div class="toast" id="update-indicator">Updated</div>
|
Reference in New Issue
Block a user