Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Überschrift sollte default-Überschrift ersetzen #16

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions data.default.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"activeView": "title",
"title": { "headline": "Ueberschrift", "subtitle": "Unterueberschrift", "addinfo": "" },
"speakerlist": { "headline": "Diskussion", "list": [] },
"timetable": { "headline": "Zeitplan", "list": [] }
"title": { "headline": "", "subtitle": "", "addinfo": "" },
"speakerlist": { "headline": "", "list": [] },
"timetable": { "headline": "", "list": [] }
}
Binary file added static/CS.woff
Binary file not shown.
Binary file added static/CSBold.woff
Binary file not shown.
Binary file added static/CSLight.woff
Binary file not shown.
8 changes: 4 additions & 4 deletions static/admin.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ <h1>Digitaler Stadtparteitag <small>by AG Linke EntwicklerInnen Leipzig</small><
<form class="form">
<div class="form-group">
<label for="headline">Hauptüberschrift</label>
<input class="form-control mousetrap" id="headline" ng-model="admin.data.title.headline" />
<input class="form-control mousetrap" id="headline" placeholder="&Uuml;berschrift" ng-model="admin.data.title.headline" />
</div>
<div class="form-group">
<label for="subtitle">Unterüberschrift</label>
<input class="form-control mousetrap" id="subtitle" ng-model="admin.data.title.subtitle" />
<input class="form-control mousetrap" id="subtitle" placeholder="Unter&uuml;berschrift" ng-model="admin.data.title.subtitle" />
</div>
<div class="form-group">
<label for="addinfo">Zusatzinformationen</label>
Expand All @@ -73,7 +73,7 @@ <h1>Digitaler Stadtparteitag <small>by AG Linke EntwicklerInnen Leipzig</small><
<form class="form">
<div class="form-group">
<label for="headline">Überschrift</label>
<input class="form-control mousetrap" id="headline" ng-model="admin.data.timetable.headline" />
<input class="form-control mousetrap" id="headline" placeholder="Zeitplan" ng-model="admin.data.timetable.headline" />
</div>
<hr />
<div>
Expand All @@ -95,7 +95,7 @@ <h1>Digitaler Stadtparteitag <small>by AG Linke EntwicklerInnen Leipzig</small><
<form class="form">
<div class="form-group">
<label for="headline">Überschrift</label>
<input class="form-control mousetrap" id="headline" ng-model="admin.data.speakerlist.headline" />
<input class="form-control mousetrap" id="headline" placeholder="Diskussion" ng-model="admin.data.speakerlist.headline" />
</div>
<hr />
<div dnd-list="admin.data.speakerlist.list" dnd-allowed-types="speaker">
Expand Down