44 lines
1.7 KiB
HTML
44 lines
1.7 KiB
HTML
|
|
{% extends "base.html" %}
|
||
|
|
{% block title %}Salon — {{ owner.tenant.name }}{% endblock %}
|
||
|
|
{% block nav %}{% include "dashboard/_nav.html" %}{% endblock %}
|
||
|
|
{% block content %}
|
||
|
|
<h1>Profil salona</h1>
|
||
|
|
<form method="post" action="/dash/settings">
|
||
|
|
<div class="grid2">
|
||
|
|
<div class="card">
|
||
|
|
<h2>Osnovni podaci</h2>
|
||
|
|
<label>Naziv salona</label>
|
||
|
|
<input type="text" name="name" value="{{ t.name }}" required>
|
||
|
|
<label>Adresa</label>
|
||
|
|
<input type="text" name="address" value="{{ t.address }}">
|
||
|
|
<label>Grad</label>
|
||
|
|
<input type="text" name="city" value="{{ t.city }}">
|
||
|
|
<label>Telefon salona <small>(vaš postojeći broj)</small></label>
|
||
|
|
<input type="text" name="phone" value="{{ t.phone }}">
|
||
|
|
<label>Web stranica</label>
|
||
|
|
<input type="text" name="website" value="{{ t.website }}">
|
||
|
|
</div>
|
||
|
|
<div class="card">
|
||
|
|
<h2>Radno vrijeme</h2>
|
||
|
|
<p class="muted">Format: <code>09:00-13:00, 14:00-18:00</code> (pauza = dva intervala).
|
||
|
|
Prazno = neradni dan.</p>
|
||
|
|
{% for key, label in day_labels %}
|
||
|
|
<label>{{ label }}</label>
|
||
|
|
<input type="text" name="wh_{{ key }}" value="{{ hours_text[key] }}" placeholder="npr. 09:00-18:00">
|
||
|
|
{% endfor %}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<button>Sačuvaj</button>
|
||
|
|
</form>
|
||
|
|
|
||
|
|
<div class="card" style="margin-top:20px">
|
||
|
|
<h2>Zalijepi radno vrijeme</h2>
|
||
|
|
<p class="muted">Zalijepite radno vrijeme kako god ga imate zapisano (sa web stranice,
|
||
|
|
Facebooka…) — Gogo će ga pročitati, a vi samo provjerite i sačuvate.</p>
|
||
|
|
<form method="post" action="/dash/settings/parse-hours">
|
||
|
|
<textarea name="text" placeholder="npr. pon-pet 9-18 (pauza 13-14), subota 9-14, nedjelja ne radimo"></textarea>
|
||
|
|
<button class="ghost" style="margin-top:8px">Pročitaj radno vrijeme</button>
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
{% endblock %}
|