{% extends 'site_elements/base.html' %} {% block title %}{{ request.path_params['community'] }}{% endblock %} {% block nav_title %} {{ request.path_params['community'] }}  hosted by SQLMatches {% endblock %} {% block content %} {% if base_details.disabled == 0 %} {% if 'steam_id' in request.session and request.session['steam_id'] == base_details.owner_id %}

Owner Panel

API Key: 
{{ base_details.api_key }}

NEVER SHARE YOUR API KEY WITH ANYONE, MISS USING OUR API WILL RESULT IN A PERMANENT BAN!

Check out our setup guide here.

{% endif %} {% else %} {% endif %} {% if matches|length > 0 %} {% for match in matches %}

Team {{ match.team_1_name }}

{% if match.status == 0 %} {% if match.team_1_score > match.team_2_score %} {{ match.team_1_score }}:{{ match.team_2_score }} {% elif match.team_1_score == match.team_2_score %} {{ match.team_1_score }}:{{ match.team_2_score }} {% else %} {{ match.team_1_score }}:{{ match.team_2_score }} {% endif %} {% else %} {{ match.team_1_score }}:{{ match.team_2_score }} {% endif %}

Team {{ match.team_2_name }}

{% endfor %} {% else %}

No results!

{% endif %}
{% if 'page' in request.path_params and request.path_params['page'] > 1 %} {% else %} {% endif %}
{% endblock %} {% block js %} {% endblock %}