pull action buttons right
This commit is contained in:
parent
da9db62b9a
commit
61fa1d399b
1 changed files with 6 additions and 4 deletions
|
@ -5,10 +5,7 @@
|
|||
{% block head_title %}{{ team.name }}{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<h1>{{ team.name }}{% if state %} <span class="label">{{ state }}</span>{% endif %}</h1>
|
||||
|
||||
{% if team.description %}<p>{{ team.description }}</p>{% endif %}
|
||||
|
||||
<div class="pull-right">
|
||||
{% if can_join %}
|
||||
<form method="post" action="{% url team_join team.slug %}">
|
||||
{% csrf_token %}
|
||||
|
@ -29,6 +26,11 @@
|
|||
<input type="submit" class="btn btn-primary" value="apply">
|
||||
</form>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<h1>{{ team.name }}{% if state %} <span class="label">{{ state }}</span>{% endif %}</h1>
|
||||
|
||||
{% if team.description %}<p>{{ team.description }}</p>{% endif %}
|
||||
|
||||
{% if user.is_staff or state == "manager" %}
|
||||
{% if team.managers %}
|
||||
|
|
Loading…
Reference in a new issue