我需要PopupBox内具有不同行为的按钮,但我需要继承基本样式,但我不知道它是什么样式。我认为我发现了问题,并且干扰了MahApps。我不明白为什么不必覆盖样式的按钮看上去正确。有谁能够帮助我?谢谢
{% if follow %}
<a href="{% url 'follow' user_profil.id %}">
Unfollow {{ user_profil.username }}
</a>
{% else %}
<a href="{% url 'unfollow' user_profil.id %}">
Follow {{ user_profil.username }}
</a>
{% endif %}