mirror of https://gitlab.com/bashrc2/epicyon
No checkbox if dropdown is absent
parent
c2a1b59390
commit
c0bd35adf9
|
@ -76,8 +76,9 @@ def _htmlNewPostDropDown(scopeIcon: str, scopeDescription: str,
|
||||||
"""Returns the html for a drop down list of new post types
|
"""Returns the html for a drop down list of new post types
|
||||||
"""
|
"""
|
||||||
dropDownContent = '<nav><div class="newPostDropdown">\n'
|
dropDownContent = '<nav><div class="newPostDropdown">\n'
|
||||||
dropDownContent += ' <input type="checkbox" ' + \
|
if not noDropDown:
|
||||||
'id="my-newPostDropdown" value="" name="my-checkbox">\n'
|
dropDownContent += ' <input type="checkbox" ' + \
|
||||||
|
'id="my-newPostDropdown" value="" name="my-checkbox">\n'
|
||||||
dropDownContent += ' <label for="my-newPostDropdown"\n'
|
dropDownContent += ' <label for="my-newPostDropdown"\n'
|
||||||
dropDownContent += ' data-toggle="newPostDropdown">\n'
|
dropDownContent += ' data-toggle="newPostDropdown">\n'
|
||||||
dropDownContent += ' <img loading="lazy" alt="" title="" src="/' + \
|
dropDownContent += ' <img loading="lazy" alt="" title="" src="/' + \
|
||||||
|
|
Loading…
Reference in New Issue