templates/static/rules.html.twig line 1

Open in your IDE?
  1. {% trans_default_domain 'frontend' %}
  2. {% extends 'base_about.html.twig' %}
  3. {% block title %}{{ 'about.title.rules'|trans }}{% endblock %}
  4. {% block head_title %}{{ 'about.title.rules'|trans }}{% endblock %}
  5. {% block content_inner %}
  6.     <div class="mb-3">
  7.         Like every club, Dressplay has rules that must be followed. Please read the Club Rules below for a safe and welcoming environment for everyone.
  8.     </div>
  9.     <div class="mb-5">
  10.         If the rules are violated, the member will be warned or banned. A second chance is always our first choice, unless the violation is too serious.
  11.     </div>
  12.     <ul class="list rules-list mb-5">
  13.         <li>
  14.             <h5>Respect the Club Rules!</h5>
  15.             <div>First rule is very simple: breaking the rules may mean ejection! </div>
  16.         </li>
  17.         <li>
  18.             <h5>Respect the dress code!</h5>
  19.             <div>We are a clothes fetish shopping club. We don't like nudity but we love to dress up and do crazy things.</div>
  20.         </li>
  21.         <li>
  22.             <h5>Respect "Dos and Don'ts"!</h5>
  23.             <div>Accept and respect the personal content guidelines of the Club Mates and the club itself. </div>
  24.         </li>
  25.         <li>
  26.             <h5>Respect club decisions!</h5>
  27.             <div>All club decions, made by the Club Mates or the management are final. </div>
  28.         </li>
  29.         <li>
  30.             <h5>No hatespeech or insults!</h5>
  31.             <div>Do not offend other club members, the Club Mates or the club management. Stay polite and friendly. </div>
  32.         </li>
  33.         <li>
  34.             <h5>No stalking or tracing!</h5>
  35.             <div>Do not bother the Club Mates in their private lives. We will instantly take action against it. Zero tolerance applies.</div>
  36.         </li>
  37.         <li>
  38.             <h5>No copyright violations!</h5>
  39.             <div>Do not post club content elsewhere, original or modifed (deep fakes, collages). True fans support. They don't steal.</div>
  40.         </li>
  41.         <li>
  42.             <h5>No date/paid sex requests!</h5>
  43.             <div>The Club Mates are not available for personal meetings of any type. We are a virtual club and available online only. </div>
  44.         </li>
  45.         <li>
  46.             <h5>No illegal content in the club!</h5>
  47.             <div>Never send, use, request or offer illegal content or activities. Check our blacklist <a href="#" class="link-secondary" data-toggle="modal" data-target="#blacklist-popup">here!</a></div>
  48.         </li>
  49.         <li>
  50.             <h5>No refunds or money return!</h5>
  51.             <div>All sales are final. We are like a cinema, no refunds for tickets unless closed for technical reasons. We do refund credits for deals and projects in the case of failure. </div>
  52.         </li>
  53.         <li>
  54.             <h5>No chargebacks!</h5>
  55.             <div>Chargebacks are fraud and financial crime. We will take legal action against chargebacks. All transactions are 3D-Secure and there is no sense for the "it wasn't me" argument.</div>
  56.         </li>
  57.     </ul>
  58.     <div>
  59.         Please contact our support team if you have any questions, suggestions, or remarks regarding our club rules.
  60.     </div>
  61.     {% include 'static/Block/content_blacklist_popup.html.twig' %}
  62. {% endblock %}