20 lines
534 B
Cheetah
20 lines
534 B
Cheetah
{{ componentBody "nav_bar" }}
|
|
|
|
|
|
{{- $acctID := parseInt64 .PathParams.acctID }}
|
|
{{- $acct := (.Accounts.GetAccount $acctID) }}
|
|
|
|
<h1>Account: {{ $acct.Email }} (id: {{ $acctID }})</h1>
|
|
|
|
{{- $etsyUser := .Etsy.GetUserPointerByAccountID $acctID }}
|
|
{{- if $etsyUser }}
|
|
<h3>Etsy User: {{ $etsyUser.UserID }}; Shop ID: {{ $etsyUser.ShopID }}</h3>
|
|
{{- else }}
|
|
<h3>
|
|
<a href="{{ .Etsy.GenerateConnectionURLForNewAccount $acctID }}">
|
|
Link Your Etsy Store!
|
|
</a>
|
|
</h3>
|
|
{{- end }}
|
|
<h2><a href="{{$acctID}}/reports">View Reports</a></h2>
|