diff options
-rw-r--r-- | archaeological_operations/templates/ishtar/sheet_operation.html | 4 | ||||
-rw-r--r-- | ishtar_common/static/media/style.css | 8 |
2 files changed, 10 insertions, 2 deletions
diff --git a/archaeological_operations/templates/ishtar/sheet_operation.html b/archaeological_operations/templates/ishtar/sheet_operation.html index 945b3f4e5..e1846c8e2 100644 --- a/archaeological_operations/templates/ishtar/sheet_operation.html +++ b/archaeological_operations/templates/ishtar/sheet_operation.html @@ -27,8 +27,8 @@ <h3>{% trans "General"%}</h3> {% if item.common_name %}<p><label>{%trans "Name:"%}</label> <span class='value'>{{ item.common_name }}</span></p>{% endif %} -<p><label>{%trans "Year:"%}</label> <span class='value'>{{ item.year }}</span></p> -{% if item.operation.operation_code %}<p><label>{%trans "Numerical reference:"%}</label> <span class='value'>{{ item.operation_code }}</span></p>{% endif %} +<p><label>{%trans "Year:"%}</label> <span class='value strong'>{{ item.year }}</span></p> +{% if item.operation_code %}<p><label>{%trans "Numerical reference:"%}</label> <span class='value strong'>{{ item.operation_code }}</span></p>{% endif %} {% if item.code_patriarche %}<p><label>{%trans "Patriarche OA code:"%}</label> <span class='value'>{{ item.code_patriarche }}</span></p>{%else%} <p class='alert'>{%trans "Patriarche OA code not yet recorded!"%}</p>{%endif%} diff --git a/ishtar_common/static/media/style.css b/ishtar_common/static/media/style.css index 205afe867..e9f1a8bab 100644 --- a/ishtar_common/static/media/style.css +++ b/ishtar_common/static/media/style.css @@ -592,6 +592,14 @@ table.confirm tr.spacer td:last-child{ width:465px; } +.strong{ + font-weight:bold; +} + +#window span.strong{ + font-size:1.1em; +} + #window p{ margin:0.3em; } |