{# {% extends "email/basemail.txt" %} #}
{% load i18n %}
{% with client.title as client_title %}
Subject: {% blocktrans %}{{ client_title }} wants to join your network.{% endblocktrans %}

{% with target.title as target_title %}
{% with client.get_absolute_url as client_get_absolute_url %}
{% blocktrans %}Dear {{ target_title }},{% endblocktrans %}
  
  {% blocktrans %}You just recieved a request from {{ client_title }} to join your network.{% endblocktrans %}
  
  {% blocktrans %}You have to take an action!{% endblocktrans %}
  
  {% blocktrans %}Visit {{ domain }}{{ client_get_absolute_url }} to accept or decline his/her request.{% endblocktrans %}
  
{% endwith %}
{% endwith %}

{% blocktrans %}
  --
  Greetings from twistranet
{% endblocktrans %}
{% endwith %}

