Skip to content

Commit

Permalink
#866 add documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
cbellone committed Feb 9, 2020
1 parent 8c43c5b commit ecdedc8
Show file tree
Hide file tree
Showing 7 changed files with 66 additions and 4 deletions.
5 changes: 5 additions & 0 deletions website/assets/scss/_variables_project.scss
Expand Up @@ -20,3 +20,8 @@ $danger: #dc3545;
$light: #f8f9fa;
$dark: #343a40;
$primary-light: lighten($primary, 75%);

.alfio-docs img {
margin: 30px;
box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.15) !important;
}
Expand Up @@ -15,12 +15,18 @@ If you want to accept payments via Bank Transfer, head to the Payment section of

Enable the Bank Transfer payment method at organization level

### Send payment instructions manually

- **default: disabled**

If Alf.io's offline payment handling is not enough for your use case, for instance because you need to send a paper version of the invoice, you can enable this flag, and send the payment instructions manually. More info [here](external-payment/)

### Cancel Reservation automatically when payment is overdue

- **default: true** 2.0-M1
- **default: false** 2.0-M2+
- **default: disabled**

Controls whether or not to delete automatically reservations whose payment is expired
Controls whether or not to delete automatically reservations whose payment is expired.
The default is to keep reservations until the organizer deletes them explicitly

### Maximum number of days allowed to pay an offline ticket

Expand All @@ -43,7 +49,7 @@ This parameter tells alf.io when it should send a reminder/warning email to the
Details about the organizer's Bank Account. E.g. Address of the bank and SWIFT code for international payments


## How it works
## How the process works

### Reservation Process

Expand Down
@@ -0,0 +1,21 @@
---
title: "Send payment instructions manually"
linkTitle: "Send payment instructions manually"
date: 2017-01-05
weight: 1
description: >
How to send payment instructions manually, in case your processes do not match Alf.io's flow
---

If Alf.io's offline payment handling is not enough for your use case, for instance because you need to send a paper version of the invoice, you can enable this flag, and send the payment instructions manually. Here's how to do it.


## Select "Send payment instructions manually"

![Offline Payment Configuration](/img/configuration/payment/offline-deferred/001.png)

this option instructs Alf.io to not show payment instructions when the attendee register. Instead, the following page will be shown

![Reservation Confirmation](/img/configuration/payment/offline-deferred/002.png)

The organizer can then confirm / delete the payment from the relevant section of the backoffice. See [guide](../)
30 changes: 30 additions & 0 deletions website/layouts/docs/baseof.html
@@ -0,0 +1,30 @@
<!doctype html>
<html lang="{{ .Site.Language.Lang }}" class="no-js">
<head>
{{ partial "head.html" . }}
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{ . }} | {{ end }}{{ .Site.Title }}{{ end }}</title>
</head>
<body class="td-{{ .Kind }}">
<header>
{{ partial "navbar.html" . }}
</header>
<div class="container-fluid td-outer">
<div class="td-main">
<div class="row flex-xl-nowrap">
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
{{ partial "sidebar.html" . }}
</div>
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
{{ partial "toc.html" . }}
</div>
<main class="col-12 col-md-9 col-xl-8 pl-md-5 alfio-docs" role="main">
{{ if not .Site.Params.ui.breadcrumb_disable }}{{ partial "breadcrumb.html" . }}{{ end }}
{{ block "main" . }}{{ end }}
</main>
</div>
</div>
{{ partial "footer.html" . }}
</div>
{{ partial "scripts.html" . }}
</body>
</html>
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified website/static/img/configuration/payment/offline/001.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ecdedc8

Please sign in to comment.