Skip to content

Commit

Permalink
[#2939] Organization template updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes committed Sep 27, 2012
1 parent d22b951 commit 664aae5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ckan/templates/organization/confirm_delete.html
Expand Up @@ -7,9 +7,9 @@
{% block main_content %}
<section class="module span6 offset3">
<div class="module-content">
<p>{{ _('Are you sure you want to delete group - {name}?').format(name=c.group_dict.name) }}</p>
<p>{{ _('Are you sure you want to delete organization - {name}?').format(name=c.group_dict.name) }}</p>
<p class="form-actions">
<form action="{% url_for controller='group', action='delete', id=c.group_dict.name %}" method="post">
<form action="{% url_for controller='organization', action='delete', id=c.group_dict.name %}" method="post">
<button class="btn" type="submit" name="cancel" >{{ _('Cancel') }}</button>
<button class="btn btn-primary" type="submit" name="delete" >{{ _('Confirm Delete') }}</button>
</form>
Expand Down
Expand Up @@ -25,7 +25,7 @@ <h3 class="media-heading">
</a>
</h3>
{% if organization.description %}
<p>{{ h.truncate(organization.description, length=80, whole_word=True) }}...</p>
<p>{{ h.truncate(organization.description, length=80, whole_word=True) }}</p>
{% else %}
<p class="empty">{{ _('This organization has no description') }}</p>
{% endif %}
Expand Down

0 comments on commit 664aae5

Please sign in to comment.