forked from doubaniux/boofilsic
-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a5cd776
commit 9096df2
Showing
6 changed files
with
95 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{% load i18n %} | ||
{% load duration %} | ||
{% blocktrans with item_url=event.item.url item_title=event.item.display_title %} | ||
boosted your note on <a href="{{ item_url }}">{{ item_title }}</a> | ||
{% endblocktrans %} | ||
{% if event.piece.progress_value %} | ||
<span class="tag-list"><span><a>{{ event.piece.progress_display }}</a></span></span> | ||
{% endif %} | ||
<blockquote class="tldr" _="on click toggle .tldr on me"> | ||
{{ event.piece.html|safe }} | ||
</blockquote> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{% load i18n %} | ||
{% load duration %} | ||
{% blocktrans with item_url=event.item.url item_title=event.item.display_title %} | ||
liked your note on <a href="{{ item_url }}">{{ item_title }}</a> | ||
{% endblocktrans %} | ||
{% if event.piece.progress_value %} | ||
<span class="tag-list"><span><a>{{ event.piece.progress_display }}</a></span></span> | ||
{% endif %} | ||
<blockquote class="tldr" _="on click toggle .tldr on me"> | ||
{{ event.piece.html|safe }} | ||
</blockquote> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{% load i18n %} | ||
{% load duration %} | ||
{% blocktrans with item_url=event.item.url item_title=event.item.display_title %} | ||
replied to your note on <a href="{{ item_url }}">{{ item_title }}</a> | ||
{% endblocktrans %} | ||
{% if event.piece.progress_value %} | ||
<span class="tag-list"><span><a>{{ event.piece.progress_display }}</a></span></span> | ||
{% endif %} | ||
<blockquote class="tldr" _="on click toggle .tldr on me"> | ||
{{ event.piece.html|safe }} | ||
</blockquote> | ||
{% include "event/_post.html" with post=event.reply %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters