Skip to content

Commit

Permalink
fix meeting end bug
Browse files Browse the repository at this point in the history
  • Loading branch information
fuji246 committed Dec 23, 2012
1 parent f03c1cc commit d6aa2ec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bbb_django/bbb/templates/meetings.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ <h2>{% trans "Meetings" %}</h2>
{% if meeting.info.started %}
{% if meeting.running == 'true' %}
<span class="status running">{% trans "Running" %}</span>
<form method="GET" action="{% url join meeting.meeting_id%}"><input type="submit" value="{% trans "Join" %}"/></form> <form method="POST" action="{% url delete meeting.meeting_id meeting.moderator_pw %}">{% csrf_token %}<input type="submit" value="{% trans "End" %}"/></form>
{% if perms.bbb.end_meeting %}
<form method="GET" action="{% url join meeting.meeting_id%}"><input type="submit" value="{% trans "Join" %}"/></form> <form method="POST" action="{% url delete meeting.meeting_id meeting.info.moderator_pw %}">{% csrf_token %}<input type="submit" value="{% trans "End" %}"/></form>
{% endif %}
{% else %}
<span class="status notrunning">{% trans "Ended" %}</span>
{% if meeting.playback_url %}
Expand Down

0 comments on commit d6aa2ec

Please sign in to comment.