Skip to content

Commit

Permalink
Merge pull request #1631 from RogerHaase/1595-missing-dl
Browse files Browse the repository at this point in the history
1595 missing dl
  • Loading branch information
RogerHaase authored Feb 26, 2024
2 parents d7bc950 + 35d085d commit cb35dcb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/moin/templates/modify.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,17 @@ <h1>{{ title }}</h1>
{{ meta_editor(form['meta_form'], may_admin) }}

{% if item.meta['name'][0].endswith('Group') %}
{{ forms.render(form['usergroup']) }}
<dl>
{{ forms.render(form['usergroup']) }}
</dl>
<div class="hint">
{{ _('Enter list of user names, one name per line.') }}
</div>
{% endif %}
{% if item.meta['name'][0].endswith('Dict') %}
{{ forms.render(form['wikidict']) }}
<dl>
{{ forms.render(form['wikidict']) }}
</dl>
<div class="hint">
{{ _('Enter "key=value" strings, one per line, no quotes, no blank lines.') }}
</div>
Expand Down

0 comments on commit cb35dcb

Please sign in to comment.