{% extends "templates/web.html" %} {% block page_content %} {% macro chapter_button() %}

Go to Chapter Page

{% endmacro %} {% if frappe.session.user=='Guest' %}

Please signup and login to join this chapter

Login

{% else %} {% if already_member %}

You are already a member of {{ chapter.name }}!

{{ chapter_button() }}

Leave Chapter

{% else %} {% if request.method=='POST' %}

Welcome to chapter {{ chapter.name }}!

{{ chapter_button() }} {% else %}
{% endif %} {% endif %} {% endif %} {% endblock %}