mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 18:47:15 -07:00
parent
8a288db2b0
commit
7081eac5bb
3 changed files with 117 additions and 26 deletions
|
@ -6,34 +6,114 @@
|
|||
<div class="col-sm-8 col-sm-push-1">
|
||||
<fieldset>
|
||||
<legend>About</legend>
|
||||
<hr />
|
||||
<table class="table table-condensed">
|
||||
<tr>
|
||||
<td>
|
||||
Application Version:
|
||||
</td>
|
||||
<td>
|
||||
@Model.ApplicationVersion
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
OS:
|
||||
</td>
|
||||
<td>
|
||||
@Model.Os
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<div class="form-group">
|
||||
<label>Application Version: </label>
|
||||
<label>@Model.ApplicationVersion</label>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="control-label">OS: </label>
|
||||
<label class="control-label">@Model.Os</label>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="control-label">System Version: </label>
|
||||
<label class="control-label">@Model.SystemVersion</label>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="control-label">Branch: </label>
|
||||
<label class="control-label">@Model.Branch</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="control-label">Log Level: </label>
|
||||
<label class="control-label">@Model.LogLevel</label>
|
||||
</div>
|
||||
<tr>
|
||||
<td>
|
||||
System Version:
|
||||
</td>
|
||||
<td>
|
||||
@Model.SystemVersion
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Branch:
|
||||
</td>
|
||||
<td>
|
||||
@Model.Branch
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Log Level:
|
||||
</td>
|
||||
<td>
|
||||
@Model.LogLevel
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Database Location:
|
||||
</td>
|
||||
<td>
|
||||
@Model.DbLocation
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Running Directory:
|
||||
</td>
|
||||
<td>
|
||||
@Model.RunningDir
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
<hr />
|
||||
<table class="table table-condensed">
|
||||
<tr>
|
||||
<td>
|
||||
Github
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://github.com/tidusjar/Ombi" target="_blank">https://github.com/tidusjar/Ombi</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Wiki
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://github.com/tidusjar/Ombi/wiki" target="_blank">https://github.com/tidusjar/Ombi/wiki</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Issues
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://github.com/tidusjar/Ombi/issues" target="_blank">https://github.com/tidusjar/Ombi/issues</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Chat
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://gitter.im/tidusjar/Ombi" target="_blank">https://gitter.im/tidusjar/Ombi</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Feature Requests
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://feathub.com/tidusjar/Ombi" target="_blank">https://feathub.com/tidusjar/Ombi</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr />
|
||||
@if (Model.OAuthEnabled)
|
||||
{
|
||||
{
|
||||
<div class="form-group">
|
||||
<div>
|
||||
<button id="save" type="submit" class="btn btn-danger-outline">Report a bug</button>
|
||||
|
@ -45,10 +125,11 @@
|
|||
{
|
||||
<div class="form-group">
|
||||
<div>
|
||||
<button id="oAuth" type="submit" class="btn btn-primary-outline">Log in via Github</button>
|
||||
<button id="oAuth" type="submit" class="btn btn-primary-outline">Log in via Github to Report an Issue</button>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
|
||||
|
||||
</fieldset>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue