Skip to content

Commit

Permalink
web - minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
superstes committed Oct 24, 2021
1 parent 8f9c103 commit 9c06d00
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion code/web/base/ga/templates/system/config.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<label for="type">Setting to configure</label>
<select class="form-control" id="type" name="type">
<option selected value="server">Server</option>
<option selected value="agent">Agent</option>
<option value="agent">Agent</option>
</select>
{% include "../btn/select.html" %}
</form>
Expand Down
4 changes: 2 additions & 2 deletions code/web/base/ga/templates/system/service.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ <h3>
<h3>
Status & Logs
</h3>
<a href="/system/log/?log_type=Service+journal&log_subtype={{ service_name }}" class="btn btn-info">Service Status</a>
<a href="/system/log/?log_type=Service&log_subtype={{ service_name }}" class="btn btn-info">Service Journal</a>
<a href="/system/log/?log_type=Service&log_subtype={{ service_name }}" class="btn btn-info">Service Status</a>
<a href="/system/log/?log_type=Service+journal&log_subtype={{ service_name }}" class="btn btn-info">Service Journal</a>
{% if service_name == 'GrowAutomation' %}
<a href="/system/log/?log_type=GrowAutomation&log_subtype=Core" class="btn btn-info">Application Logs</a>
{% endif %}
Expand Down
4 changes: 2 additions & 2 deletions code/web/base/ga/templates/warn/connection_insecure.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
{% if request.is_secure == False %}
<div class="alert alert-warning">
{% if request|client_is_public %}
{{ '' | warning_public_unencrypted | safe }}
{{ 'public_unencrypted' | warning | safe }}
{% else %}
{{ '' | warning_unencrypted | safe }}
{{ 'unencrypted' | warning | safe }}
{% endif %}
</div>
{% endif %}
2 changes: 1 addition & 1 deletion code/web/base/ga/templates/warn/connection_public.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% load util %}
{% if request|client_is_public %}
<div class="alert alert-warning">
{{ '' | warning_public | safe }}
{{ 'public' | warning | safe }}
</div>
{% endif %}

0 comments on commit 9c06d00

Please sign in to comment.