NFM-Studios / project-olly

Sports Event Management at it's finest. Like tuxedo fine
https://olly.nfmstudios.com
Mozilla Public License 2.0
26 stars 8 forks source link

hide social info icon if field is blank #119

Closed mikemaddem closed 3 years ago

tkenney124 commented 3 years ago

Changes made today to base.html

{% if SocialInfo.twitterprofile != None %} {% endif %}

        {% if SocialInfo.facebookpage != None %}
        <a href="{{ SocialInfo.facebookpage }}"><i class="fab fa-facebook-square"></i></a>
        {% endif %}

        {% if SocialInfo.youtubechannel != None %}
        <a href="{{ SocialInfo.youtubechannel }}"><i class="fab fa-youtube-square"></i></a>
        {% endif %}

        {% if SocialInfo.twitchchannel != None %}
        <a href="{{ SocialInfo.twitchchannel }}"><i class="fab fa-twitch"></i></a>
        {% endif %}

        {% if SocialInfo.discord != None %}
        <a href="{{ SocialInfo.discord }}"><i class="fab fa-discord"></i></a>
        {% endif %}