(el)
| 10439 | """ |
| 10440 | rel = (rel or "").strip("/") |
| 10441 | return f"{rel}/{name}" if rel else name |
| 10442 | u = current_user() |
| 10443 | prefs = get_user_prefs(u) if u else dict(DEFAULT_PREFS) |
| 10444 | but_css = BUT_CSS + prefs_css(prefs) |
| 10445 | try: |
| 10446 | story_users = _story_active_usernames() if u else set() |
| 10447 | except Exception: |
no test coverage detected