summaryrefslogtreecommitdiff
path: root/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/translation_page.html
diff options
context:
space:
mode:
Diffstat (limited to 'gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/translation_page.html')
-rw-r--r--gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/translation_page.html27
1 files changed, 13 insertions, 14 deletions
diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/translation_page.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/translation_page.html
index 4639df3f..c48fa1fd 100644
--- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/translation_page.html
+++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/translation_page.html
@@ -32,7 +32,6 @@ $("#lan option[value='{{v}}']").remove();
</script>
-
<div class="large-12 columns">
<table class="large-6 columns">
<div class="row">
@@ -58,9 +57,9 @@ $("#lan option[value='{{v}}']").remove();
<div class="row">
<div class="medium-8 columns">
{% if "Theme" in node.member_of_names_list %}
-{% trans "Theme" %} : {{node.name}}</br></br>
+<b>{% trans "Theme" %} :</b> {{node.name}}</br></br>
{% else %}
-{% trans "Page Name" %} : {{node.name}}</br></br>
+<b>{% trans "Page Name" %} :</b> {{node.name}}</br></br>
{% endif %}
</div>
</div>
@@ -69,12 +68,12 @@ $("#lan option[value='{{v}}']").remove();
<div class="medium-8 columns">
{% if "Theme" not in node.member_of_names_list %}
- Description: </br></br>
-<textarea name="content" class="field left">{{node.content_org|default_if_none:""}}</textarea>
- </div></div>
+ <b>Description:</b> </br></br>
+<div name="content" class="field left" >{{node.content_org|default_if_none:""}}</div>
+ </div></div></br>
<div class="row">
<div class="medium-8 columns">
-{% trans "Tags: " %} </br></br>
+<b>{% trans "Tags: " %}</b> </br></br>
{{node.tags|join:', '|default_if_none:""}}
{% endif %}
@@ -89,11 +88,11 @@ $("#lan option[value='{{v}}']").remove();
<div class="row">
<div class="medium-8 columns">
{% if "Theme" in node.member_of_names_list %}
-<label>{% trans "Theme" %}</label>
+<label style="font-weight: bold">{% trans "Theme" %}</label>
<input id="name_id" name="name" type="text" value="{{node.name}}" placeholder="Enter name..." required>
<small class="error">{% trans "Please give your page a descriptive name. It's helpful for others and for yourself." %}</small>
{% else %}
-<label>{% trans "Page Name" %}</label>
+<label style="font-weight: bold">{% trans "Page Name" %}</label>
<input id="name_id" name="name" type="text" value="{{node.name}}" placeholder="Enter name..." required>
<small class="error">{% trans "Please give your page a descriptive name. It's helpful for others and for yourself." %}</small>
{% endif %}
@@ -104,7 +103,7 @@ $("#lan option[value='{{v}}']").remove();
<div class="large-12 columns">
{% if "Theme" not in node.member_of_names_list %}
-<label>{% trans "Description" %}</label>
+<label style="font-weight: bold">{% trans "Description" %}</label>
{% include "ndf/add_editor.html" with var_name="content_org" var_placeholder="Enter the content here" var_value=node.content_org|default_if_none:"" %}
{% endif %}
@@ -115,7 +114,7 @@ $("#lan option[value='{{v}}']").remove();
<div class="large-6 columns">
{% if "Theme" not in node.member_of_names_list %}
-<span data-tooltip class="has-tip" title="Tags help identify similiar work easily. You can add as many labels as you wish using a comma ','"><label>{% trans "Tag" %}{{node.tags|pluralize|default_if_none:"s"}}</label>
+<span data-tooltip class="has-tip" title="Tags help identify similiar work easily. You can add as many labels as you wish using a comma ','"><label style="font-weight: bold">{% trans "Tag" %}{{node.tags|pluralize|default_if_none:"s"}}</label>
</span>
<input type = "hidden" name="access_policy" value="{{node.access_policy}}">
<input id="tags_id" name="tags" type="text" value="{{node.tags|join:', '|default_if_none:""}}" placeholder="Separate tags with commas...">
@@ -160,8 +159,8 @@ $("#lan option[value='{{v}}']").remove();
<div class="medium-8 columns">
Description: </br></br>
-<textarea name="content" class="field left">{{each.content_org|default_if_none:""}}</textarea>
- </div>
+<div name="content" class="field left">{{each.content_org|default_if_none:""}</div>
+ </div></br>
{% endif %}
</div>
@@ -181,7 +180,7 @@ $("#lan option[value='{{v}}']").remove();
<div class="row">
{% if "Theme" not in each.member_of_names_list and "theme_item" not in each.member_of_names_list and "Topic" not in each.member_of_names_list %}
<div class="large-12 columns">
-<label>{% trans "Description" %}</label>
+<label style="font-weight: bold">{% trans "Description" %}</label>
{% with each as nodeobj %}
{% include "ndf/add_editor.html" with var_name=each var_placeholder="Enter the content here" var_value=each.content_org|default_if_none:"" %}
{% endwith %}