Skip to content

Commit

Permalink
Changes from @will-moore
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidStirling committed Nov 1, 2024
1 parent aa50f46 commit dd28796
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@

{% for grp in myGroups %}
<li {% if grp.id == eContext.context.groupId %}class="current_group"{% endif %}>
{% if grp.id == active_group.id %}
<a href="{{ current_url }}?experimenter=-1" data-gid="{{ grp.id }}">
{% if grp.id == ome.active_group %}
<a href="#" data-gid="{{ grp.id }}">
{% else %}
<a href="{% url 'change_active_group' %}?active_group={{grp.id}}&url={{ current_url }}?experimenter=-1" data-gid="{{ grp.id }}">
<a href="{% url 'change_active_group' %}?active_group={{grp.id}}" data-gid="{{ grp.id }}">
{% endif %}
<img
{% if grp.getDetails.getPermissions.isGroupWrite %} src="{% static 'webclient/image/group_green16.png' %}"
Expand All @@ -54,7 +54,7 @@

{% for grp in groups %}
<li {% if grp.id == eContext.context.groupId %}class="current_group"{% endif %}>
<a href="#" data-gid="{{ grp.id }}">
<a href="{% url 'change_active_group' %}?active_group={{grp.id}}&url={{ current_url }}?experimenter=-1" data-gid="{{ grp.id }}">
<img
{% if grp.getDetails.getPermissions.isGroupWrite %} src="{% static 'webclient/image/group_green16.png' %}"
{% else %}
Expand Down

0 comments on commit dd28796

Please sign in to comment.