21 lines
525 B
Cheetah
21 lines
525 B
Cheetah
{{ componentBody "nav_bar" }}
|
|
|
|
|
|
<h1>Account: {{ .PathParams.acctID }}</h1>
|
|
|
|
{{- $acctID := parseInt64 .PathParams.acctID }}
|
|
|
|
Email: {{ (.Accounts.GetAccount $acctID).Email }}
|
|
|
|
{{- $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>
|