Skip to content

Commit

Permalink
Merge branch 'master' of github.com:okfn/ckan into 3028-dashboard-act…
Browse files Browse the repository at this point in the history
…ivity-stream-filtering
  • Loading branch information
Sean Hammond committed Dec 20, 2012
2 parents 9668ad3 + b208572 commit 9e1ce7b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions ckan/templates/ajax_snippets/popover_context_dataset.html
@@ -1,5 +1,6 @@
<div class="popover-context profile-info">
{% if notes != 'null' %}
{% set notes = notes|striptags %}
<p class="about">
{{ h.truncate(notes, length=160, whole_word=True) }}
</p>
Expand Down
3 changes: 2 additions & 1 deletion ckan/templates/ajax_snippets/popover_context_group.html
@@ -1,5 +1,6 @@
<div class="popover-context profile-info">
{% if notes != 'null' %}
{% if description != 'null' %}
{% set description = description|striptags %}
<p class="about">
{{ h.truncate(description, length=160, whole_word=True) }}
</p>
Expand Down
1 change: 1 addition & 0 deletions ckan/templates/ajax_snippets/popover_context_user.html
@@ -1,5 +1,6 @@
<div class="popover-context profile-info">
{% if about != 'null' %}
{% set about = about|striptags %}
<p class="about">
{{ h.truncate(about, length=160, whole_word=True) }}
</p>
Expand Down

0 comments on commit 9e1ce7b

Please sign in to comment.