{% extends 'base.html' %} {% block header %}

{% block title %}{{ service_name }} methods{% endblock %}

{% if g.user and g.user['id'] == service['author_id'] %}
{% endif %} {% endblock %} {% block content %} {% for method in methods %}

{{ method['title'] }}

{{ method['status_code'] }}

{{ method['delay'] }}

{{ method['supported_method'] }}

{% if g.user['id'] == method['author_id'] %}
{% endif %}
{% if not loop.last %}
{% endif %} {% endfor %} {% endblock %}