diff options
Diffstat (limited to 'design/templates/notes/partials/note_list.html')
-rw-r--r-- | design/templates/notes/partials/note_list.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/design/templates/notes/partials/note_list.html b/design/templates/notes/partials/note_list.html index 0c91b34..9ba4689 100644 --- a/design/templates/notes/partials/note_list.html +++ b/design/templates/notes/partials/note_list.html @@ -1,11 +1,11 @@ -<li {% if object.notebook and not hidecolor %}class="notebook-colored" style="border-left-color: {{object.notebook.color_rgb}};" {% endif %} > - <a href="{% url 'notes:detail' object.slug object.pk %}"> +<li {% if object.notebook and not hidecolor %}class="notebook-colored" style="border-left-color: {{object.notebook.color_rgba}};" {% endif %} > + <a href="{{object.get_absolute_url}}"> <h4>{{object.title}}</h4> <div class="note-preview">{{object.body_text|truncatewords:36}}</div> </a> <div class="flex-wrapper">{% if object.notebook and not hidenotebook %} <div class="notebook"> - <a href="{% url 'notebooks:detail' object.slug %}"><span class="color-box" style="background-color: {{object.notebook.color_rgb}}"></span>{{object.notebook}}</a> + <a href="{{object.notebook.get_absolute_url}}"><span class="color-box" style="background-color: {{object.notebook.color_rgb}}"></span>{{object.notebook}}</a> </div>{% endif %} <div class="tags">tags: {% for tag in object.tags.all %} <a href="{% url 'notes:tags' tag.slug %}"> |