if request.method == 'POST':
if request.POST.get('abc'):
......
if request.POST.get('bbc'):
.....
<form action="{% url 'new_channel' %}" method = "post">
{% csrf_token %}
<button name="abc" type="submit"></button>
.......
<button name="bbc" type="submit"></button>
</form>