81 lines
2.3 KiB
HTML
81 lines
2.3 KiB
HTML
{% extends "newbase.html" %}
|
|
{% block title %}Contact Us{% endblock title %}
|
|
{% block main %}
|
|
|
|
|
|
<ul class="main-content">
|
|
<li class="grid_2">
|
|
<h1>Contact us through email</h1>
|
|
{% if form.errors %}
|
|
<p style="color: red;">
|
|
Please correct the error{{ form.errors|pluralize }} below.
|
|
</p>
|
|
{% endif %}
|
|
|
|
|
|
<form method="post" action="/rowers/email/send/" id="contactform">{% csrf_token %}
|
|
<p>
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
<input type="submit" name="submitform" value="Send Message" />
|
|
</p>
|
|
</form>
|
|
</li>
|
|
|
|
<li class="grid_2">
|
|
<h1>Bug reporting, feature requests</h1>
|
|
|
|
<p>
|
|
Bug reports and feature requests can be done through our BitBucket page. Please check on the following link if your bug or issue is a known one. Feel free to file any feature request.
|
|
<ul>
|
|
<li><a href="https://bitbucket.org/sanderroosendaal/rowsandall/issues">BitBucket Issue list (click here to go report an issue or request a feature)</a></li>
|
|
</ul>
|
|
</p>
|
|
</li>
|
|
|
|
<li class="grid_2">
|
|
<h1>Facebook Group</h1>
|
|
|
|
<p>We run a facebook group where you can post questions and report problems,
|
|
especially if you think the wider user community benefits from the answers.</p>
|
|
<ul>
|
|
<li><a href="https://www.facebook.com/groups/rowsandall/">https://www.facebook.com/groups/rowsandall/</a></li>
|
|
</ul>
|
|
</li>
|
|
|
|
<li class="grid_2">
|
|
<h1>Twitter</h1>
|
|
|
|
<p>You can also check me on Twitter:
|
|
<ul>
|
|
<li><a href="https://twitter.com/rowsandall">https://twitter.com/rowsandall</a>
|
|
</ul>
|
|
When the site is down, this is the appropriate channel to look for apologies, updates, and offer help.
|
|
</p>
|
|
</li>
|
|
|
|
<li class="grid_2">
|
|
<h1>Rowsandall s.r.o.</h1>
|
|
|
|
<p><strong>Rowsandall s.r.o.</strong><br />
|
|
Nové sady 988/2<br />
|
|
602 00 Brno<br />
|
|
Czech Republic<br />
|
|
IČ: 070 48 572<br />
|
|
DIČ: CZ 070 48 572 (Nejsme plátce DPH)<br />
|
|
Datová schránka: 7897syr<br />
|
|
Email: <a href="mailto:info@rowsandall.com">info@rowsandall.com</a><br />
|
|
The company is registered in the business register at the
|
|
Regional Court in Brno (Společnost je zapsána v obchodním rejstříku vedeném u Krajského soudu v Brně, oddíl C, vložka 105845)<br/>
|
|
</p>
|
|
|
|
</li>
|
|
</ul>
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% include 'menu_help.html' %}
|
|
{% endblock %}
|
|
|