-
Notifications
You must be signed in to change notification settings - Fork 771
fix: More fixes for narrow screens #3662
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
aee4e86
8f69c4a
fcc8825
6e2e2ca
c91d471
54cba46
366b281
dab3fdd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -64,7 +64,7 @@ | |
| <br> | ||
| Action Holder{{ doc.documentactionholder_set.all|pluralize }}: | ||
| {% for action_holder in doc.documentactionholder_set.all %} | ||
| {% person_link action_holder.person title=action_holder.role_for_doc %} {{ action_holder|action_holder_badge }}{% if not forloop.last %},{% endif %} | ||
| {% person_link action_holder.person title=action_holder.role_for_doc %}{% if action_holder|action_holder_badge %} {{ action_holder|action_holder_badge }}{% endif %}{% if not forloop.last %},{% endif %} | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The issue is that if there is no
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Look to see if that space is appropriate for everywhere the action_holder templatetag is used. If it is, then add it to the html that the templatetag emits when a badge should be present. Or, to make it much more obvious why you're adding the space, try Or better yet, look to see if action_holder_badge being empty only happens when there is no action holder, and if so reduce that to But this isn't enough to hold up the PR over. |
||
| {% endfor %} | ||
| {% endif %} | ||
| {% else %} | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.