diff options
Diffstat (limited to 'ogcp/templates/commands.html')
-rw-r--r-- | ogcp/templates/commands.html | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/ogcp/templates/commands.html b/ogcp/templates/commands.html index 139e441..ac41354 100644 --- a/ogcp/templates/commands.html +++ b/ogcp/templates/commands.html @@ -42,9 +42,16 @@ form="scopesForm" formaction="{{ url_for('action_mode') }}" formmethod="get"> <input class="btn btn-light" type="submit" value="{{ _('Set ogLive') }}" form="scopesForm" formaction="{{ url_for('action_oglive') }}" formmethod="get"> - <input class="btn btn-light" type="submit" value="{{ _('Log') }}" - form="scopesForm" formaction="{{ url_for('action_legacy_log') }}" formmethod="get"> - <input class="btn btn-light" type="submit" value="{{ _('Real time log') }}" - form="scopesForm" formaction="{{ url_for('action_legacy_rt_log') }}" formmethod="get"> + <div class="dropdown btn"> + <button class="btn btn-secondary btn-light dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-expanded="false"> + Logs + </button> + <div class="dropdown-menu" aria-labelledby="dropdownMenuButton"> + <input class="btn btn-light dropdown-item" type="submit" value="{{ _('Log') }}" + form="scopesForm" formaction="{{ url_for('action_legacy_log') }}" formmethod="get"> + <input class="btn btn-light dropdown-item" type="submit" value="{{ _('Real time log') }}" + form="scopesForm" formaction="{{ url_for('action_legacy_rt_log') }}" formmethod="get"> + </div> + </div> {% endblock %} |