mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
cleaning
This commit is contained in:
parent
f70721cb52
commit
c3bcc127d0
6 changed files with 6 additions and 27 deletions
|
@ -33,18 +33,3 @@
|
||||||
su underscore chicciola autistici.org
|
su underscore chicciola autistici.org
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
data () {
|
|
||||||
return {
|
|
||||||
open: true,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
close (done) {
|
|
||||||
this.$router.replace('/')
|
|
||||||
done()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
|
@ -90,10 +90,6 @@ export default {
|
||||||
imgPath (event) {
|
imgPath (event) {
|
||||||
return event.image_path && event.image_path
|
return event.image_path && event.image_path
|
||||||
},
|
},
|
||||||
close (done) {
|
|
||||||
this.$router.replace('/')
|
|
||||||
done()
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
...mapState(['filters', 'events']),
|
...mapState(['filters', 'events']),
|
||||||
|
|
|
@ -35,7 +35,6 @@ export default {
|
||||||
name: 'Login',
|
name: 'Login',
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
open: true,
|
|
||||||
password: '',
|
password: '',
|
||||||
email: '',
|
email: '',
|
||||||
loading: false
|
loading: false
|
||||||
|
@ -48,9 +47,6 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
close () {
|
|
||||||
this.$router.replace('/')
|
|
||||||
},
|
|
||||||
...mapActions(['login']),
|
...mapActions(['login']),
|
||||||
async forgot () {
|
async forgot () {
|
||||||
if (!this.email) {
|
if (!this.email) {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
p= t('email.confirm')
|
p= t('email.confirm')
|
||||||
|
|
||||||
hr
|
hr
|
||||||
small #{config.baseurl}
|
a(href="#{config.baseurl}") #{config.title} - #{config.description}
|
|
@ -3,7 +3,7 @@ p Dove: #{event.place.name} - #{event.place.address}
|
||||||
p Quando: #{datetime(event.start_datetime)}
|
p Quando: #{datetime(event.start_datetime)}
|
||||||
br
|
br
|
||||||
if event.image_path
|
if event.image_path
|
||||||
<img style="width: 100%" src="#{config.apiurl}/media/#{event.image_path}" />
|
<img style="width: 100%; max-height: 89vh; margin: 0 auto;" src="#{config.apiurl}/media/#{event.image_path}" />
|
||||||
p #{event.description}
|
p #{event.description}
|
||||||
|
|
||||||
each tag in event.tags
|
each tag in event.tags
|
||||||
|
@ -15,4 +15,6 @@ if to_confirm
|
||||||
p Puoi confermare questo evento <a href="#{config.baseurl}/admin/confirm/#{event.id}">qui</a>
|
p Puoi confermare questo evento <a href="#{config.baseurl}/admin/confirm/#{event.id}">qui</a>
|
||||||
else
|
else
|
||||||
p Puoi eliminare queste notifiche <a href="#{config.baseurl}/del_notification/#{notification.remove_code}">qui</a>
|
p Puoi eliminare queste notifiche <a href="#{config.baseurl}/del_notification/#{notification.remove_code}">qui</a>
|
||||||
<a href="#{config.baseurl}">#{config.title} - #{config.description}</a>
|
|
||||||
|
hr
|
||||||
|
a(href="#{config.baseurl}") #{config.title} - #{config.description}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
| [Gancio] #{t('email.register.subject')}
|
| [#{config.title}] #{t('email.register.subject')}
|
||||||
|
|
Loading…
Reference in a new issue