20 lines
726 B
HTML
20 lines
726 B
HTML
{% extends "base.html" %}
|
|
{% from "auth/_macros.html" import field %}
|
|
{% block title %}{{ _('Contact seller') }}{% endblock %}
|
|
{% block content %}
|
|
<div class="card narrow">
|
|
<h2>{{ _('Contact seller') }}</h2>
|
|
<p class="muted">{{ _('Re:') }} <a href="{{ url_for('listings.detail', listing_id=listing.id) }}">{{ listing.title }}</a></p>
|
|
{% if not created %}
|
|
<p class="muted small">{{ _('You already have a conversation about this listing.') }}
|
|
<a href="{{ url_for('messaging.conversation', conv_id=conv.id) }}">{{ _('View it') }}</a>
|
|
</p>
|
|
{% endif %}
|
|
<form method="post" novalidate>
|
|
{{ form.hidden_tag() }}
|
|
{{ field(form.body) }}
|
|
{{ form.submit(class="btn") }}
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|