Skip to content

Commit

Permalink
Merge branch 'geophystech#307-spiner'
Browse files Browse the repository at this point in the history
  • Loading branch information
Arman Badalyan committed Jan 12, 2019
2 parents fd08bcc + 35ea051 commit 064cec4
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions src/components/Event.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,20 @@
<b-col cols="12" md="8">

<div v-if="errorResponse">
<p class="text-error" v-if="errorResponse.status === 403">
Доступ к информации по данному событию ограничен, пожалуйста, пройдите процедуру авторизации.
<a href="https://goo.gl/forms/i48vp55kTjL2d9Wk1" target="_blank">Служба поддежки.</a>
</p>
<p class="text-error" v-if="errorResponse.status === 404">
<div v-if="errorResponse.status === 403" class="text-error">
<p>
Доступ к информации по данному событию ограничен, пожалуйста, пройдите
<router-link :to="{name: 'UserAuthentication'}">процедуру авторизации</router-link>.
</p>
<p class="text-center">
<a href="https://goo.gl/forms/i48vp55kTjL2d9Wk1" target="_blank">Служба поддержки</a>
</p>
</div>
<div v-if="errorResponse.status === 404" class="text-error">
Данного события не существует.
Пожалуйста, посмотрите, <router-link :to="{name: 'Mainpage'}">последние землетрясения</router-link>
или выполните <router-link :to="{name: 'Events'}">поиск в архиве.</router-link>
</p>
или выполните <router-link :to="{name: 'Events'}">поиск в архиве</router-link>.
</div>
</div>

<keep-alive>
Expand Down

0 comments on commit 064cec4

Please sign in to comment.