Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/web/src/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ <h1>
</div>
{% if not is_root_page %}
<div class="content">
<a class="back" href="/"><span class="separator">&lt;&lt; </span>{{ _("Go to Home") }}</a>
<a class="back" href="/"><span class="separator">&lt;&lt; </span>{{ _("Return") }}</a>
</div>
{% endif %}
<div align="center" class="footer">
Expand All @@ -112,7 +112,7 @@ <h1>
{{ _("PiSCSI software version:") }} <b>{{ env["version"] }}</b>
</div>
<div>
{{ _("Hardware and OS:") }} {{ env["running_env"]["env"] }}
{{ _("Hardware, OS:") }} {{ env["running_env"]["env"] }}
</div>
<div>
{{ _("Network Address:") }} {{ env["host"] }} ({{ env["ip_addr"] }})
Expand Down
4 changes: 2 additions & 2 deletions python/web/src/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
{% if env["cfg_dir_exists"] %}
<p>
<form action="/config/action" method="post" id="config-actions">
<label for="config_load_name">{{ _("File Name:") }}</label>
<label for="config_load_name">{{ _("Config File:") }}</label>
<select name="name" id="config_load_name" required="" width="14">
{% if config_files %}
{% for config in config_files|sort %}
Expand All @@ -49,7 +49,7 @@

<p>
<form action="/config/save" method="post" id="config-save">
<label for="config_save_name">{{ _("File Name:") }}</label>
<label for="config_save_name">{{ _("Save As:") }}</label>
<input type="text" name="name" id="config_save_name" value="default" size="20">
.{{ CONFIG_FILE_SUFFIX }}
<input type="submit" value="{{ _("Save") }}">
Expand Down