You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
which present the same additional information in a descriptive list:
{% block primary_content_inner %}
<dl>
{% for f in c.scheming_fields %}
<dt>{{ h.scheming_language_text(f.label) }}:</dt>
<dd>{{ group_dict[f.field_name] or (" "|safe) }}</dd>
{% endfor %}
</dl>
{% endblock %}
I wonder why this is so. Is there a reason for this change in presentation form. I'm asking because I prefer the tabular form (it just looks nice :-) ) but before making new extensions to revert that part of the scheming code, I would like to know if if I'm overlooking something
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
In the basis CKAN, the about.html (~/ckan/schemckan/src/ckan/ckan/templates/organization/about.html)
has this code line:
which present any additional information for an organization in a nice tabular form:
however when loading the scheming extension a new about.html replace the original:
(~/ckan/schemckan/src/ckanext-scheming/ckanext/scheming/templates/scheming/organization/about.html)
which present the same additional information in a descriptive list:
I wonder why this is so. Is there a reason for this change in presentation form. I'm asking because I prefer the tabular form (it just looks nice :-) ) but before making new extensions to revert that part of the scheming code, I would like to know if if I'm overlooking something
Beta Was this translation helpful? Give feedback.
All reactions