changed display order of migration info
This commit is contained in:
parent
cc37ed32c2
commit
f489e03a2b
1 changed files with 7 additions and 7 deletions
|
@ -31,13 +31,7 @@
|
|||
<br />
|
||||
<br />
|
||||
|
||||
@if (ViewData.Model.Protected)
|
||||
{
|
||||
<div class="alert alert-danger" role="alert">
|
||||
This account is protected, BirdsiteLIVE cannot fetch their tweets and will not provide follow support until it is unprotected again.
|
||||
</div>
|
||||
}
|
||||
else if (ViewData.Model.Deleted)
|
||||
@if (ViewData.Model.Deleted)
|
||||
{
|
||||
<div class="alert alert-danger" role="alert">
|
||||
This mirror has been deleted by its Twitter owner.
|
||||
|
@ -50,6 +44,12 @@
|
|||
You can follow this user at <a href="@ViewData.Model.MovedTo">@ViewData.Model.MovedToAcct</a>.
|
||||
</div>
|
||||
}
|
||||
else if (ViewData.Model.Protected)
|
||||
{
|
||||
<div class="alert alert-danger" role="alert">
|
||||
This account is protected, BirdsiteLIVE cannot fetch their tweets and will not provide follow support until it is unprotected again.
|
||||
</div>
|
||||
}
|
||||
else
|
||||
{
|
||||
<div>
|
||||
|
|
Reference in a new issue