20 lines
851 B
HTML
20 lines
851 B
HTML
<article ng-controller="topicCtrlr" ng-init="getTopics()">
|
|
<section class="item stretch border">
|
|
<h3>{{titles.heading}}</h3>
|
|
<p><em>{{titles.subtitle}}</em></p>
|
|
<table>
|
|
<tr>
|
|
<th>{{titles.list}}</th>
|
|
<th>{{titles.last}}</th>
|
|
</tr>
|
|
<tr ng-repeat="topic in topics">
|
|
<td><span class="link" ng-click="setTopic(topic.topicNo)">{{topic.topicSubject}}</span> {{topic.topicDate}}</td>
|
|
<td><span class="link" ng-click="setCat(topic.topicCat.catNo)">{{topic.topicCat.catName}}</span></td>
|
|
</tr>
|
|
</table>
|
|
<p ng-if="errors.topic.show">{{errors.topic.text}}</p>
|
|
</section>
|
|
<section ng-show="errors.error.show" class="item left border">
|
|
<p>{{errors.error.message}}</p>
|
|
</section>
|
|
</article> |