bac918a9e8
- Fixed #921 (Check THANKS URL for jQuery UI Nested Sortable) - Fixed #919 (Permission problem in agenda) - Fixed #918 (Search does not work for guest users) - Fixed search-bar position. - Updated EN po files.
17 lines
726 B
HTML
17 lines
726 B
HTML
{% load i18n %}
|
|
{% load highlight %}
|
|
|
|
{% if perms.agenda.can_see_agenda and result.object.type == result.object.AGENDA_ITEM %}
|
|
<li>
|
|
<a href="{{ result.object.get_absolute_url }}">{{ result.object }}</a><br>
|
|
<span class="app">{% trans "Agenda" %}</a></span><br>
|
|
{% highlight result.text with request.GET.q %}
|
|
</li>
|
|
{% elif perms.agenda.can_see_orga_items and result.object.type == result.object.ORGANIZATIONAL_ITEM %}
|
|
<li>
|
|
<a href="{{ result.object.get_absolute_url }}"><i>[{{ result.object }}]</i></a><br>
|
|
<span class="app">{% trans "Agenda" %} ({% trans "Organizational item" %})</a></span><br>
|
|
{% highlight result.text with request.GET.q %}
|
|
</li>
|
|
{% endif %}
|